diff --git a/src/controller/audio-stream-controller.js b/src/controller/audio-stream-controller.js index cf01b9a28fe..bcca2821584 100644 --- a/src/controller/audio-stream-controller.js +++ b/src/controller/audio-stream-controller.js @@ -133,7 +133,7 @@ class AudioStreamController extends EventHandler { if (this.state !== nextState) { const previousState = this.state; this._state = nextState; - logger.log(`audio:switch from ${previousState} to ${nextState}`); + logger.log(`audio stream:${previousState}->${nextState}`); } } diff --git a/src/controller/stream-controller.js b/src/controller/stream-controller.js index 73ee5921c6b..be94aa85fdf 100644 --- a/src/controller/stream-controller.js +++ b/src/controller/stream-controller.js @@ -476,7 +476,7 @@ class StreamController extends EventHandler { if (this.state !== nextState) { const previousState = this.state; this._state = nextState; - logger.log(`main:switch from ${previousState} to ${nextState}`); + logger.log(`main stream:${previousState}->${nextState}`); this.hls.trigger(Event.STREAM_STATE_TRANSITION, {previousState, nextState}); } }