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-08-14 10:53:47 +02:00
committed by Saúl Ibarra Corretgé
parent faada0abae
commit 8d0d92a437
+1 -1
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,