From 05b7d3ce8e6ff3fb75780e66905af4244d474a64 Mon Sep 17 00:00:00 2001 From: Daniel Silhavy Date: Fri, 26 Jun 2020 16:17:09 +0200 Subject: [PATCH] Fix log message --- src/streaming/controllers/StreamController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/streaming/controllers/StreamController.js b/src/streaming/controllers/StreamController.js index 013a79bd68..bb02303df9 100644 --- a/src/streaming/controllers/StreamController.js +++ b/src/streaming/controllers/StreamController.js @@ -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);