Skip to content

Commit

Permalink
Fix invalid warning log in StreamProcessor.js (#4355)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsilhavy committed Jan 10, 2024
1 parent ff3afd1 commit d3076e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/streaming/StreamProcessor.js
Expand Up @@ -645,7 +645,7 @@ function StreamProcessor(config) {
*/
function prepareQualityChange(e) {
if (pendingSwitchToRepresentationInfo) {
logger.warning(`Canceling queued representation switch to ${pendingSwitchToRepresentationInfo.quality} for ${type}`);
logger.warn(`Canceling queued representation switch to ${pendingSwitchToRepresentationInfo.quality} for ${type}`);
}
logger.debug(`Preparing quality switch for type ${type}`);
const newQuality = e.newQuality;
Expand Down

0 comments on commit d3076e5

Please sign in to comment.