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”.
This commit is contained in:
linkmauve 2018-07-23 20:03:49 +02:00 committed by Saúl Ibarra Corretgé
parent faada0abae
commit 8d0d92a437
1 changed files with 1 additions and 1 deletions

View File

@ -704,7 +704,7 @@ export default {
track.mute();
}
});
logger.log('initialized with %s local tracks', tracks.length);
logger.log(`initialized with ${tracks.length} local tracks`);
this._localTracksInitialized = true;
con.addEventListener(
JitsiConnectionEvents.CONNECTION_FAILED,