Skip to content

Commit

Permalink
Fix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
dsilhavy committed Jun 26, 2020
1 parent 69942ef commit 05b7d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/streaming/controllers/StreamController.js
Expand Up @@ -666,7 +666,7 @@ function StreamController() {
}
// For multiperiod streams we should avoid a switch of streams after the seek to the live edge. So we do a calculation of the expected seek time to find the right stream object.
if (!initialStream && adapter.getIsDynamic() && streams.length) {
logger.debug('Dynamic multi-period stream: Trying to find the correct starting period');
logger.debug('Dynamic stream: Trying to find the correct starting period');
initialStream = getInitialStream();
}
switchStream(null, initialStream !== null ? initialStream : streams[0], NaN);
Expand Down

0 comments on commit 05b7d3c

Please sign in to comment.