Browse Source

Log the amount of local tracks properly

This changes a log message from “initialized with %s local tracks 2” to “initialized with 2 local tracks”.
master
linkmauve 7 years ago
parent
commit
8d0d92a437
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      conference.js

+ 1
- 1
conference.js View File

704
                         track.mute();
704
                         track.mute();
705
                     }
705
                     }
706
                 });
706
                 });
707
-                logger.log('initialized with %s local tracks', tracks.length);
707
+                logger.log(`initialized with ${tracks.length} local tracks`);
708
                 this._localTracksInitialized = true;
708
                 this._localTracksInitialized = true;
709
                 con.addEventListener(
709
                 con.addEventListener(
710
                     JitsiConnectionEvents.CONNECTION_FAILED,
710
                     JitsiConnectionEvents.CONNECTION_FAILED,

Loading…
Cancel
Save