瀏覽代碼

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 年之前
父節點
當前提交
8d0d92a437
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      conference.js

+ 1
- 1
conference.js 查看文件

@@ -704,7 +704,7 @@ export default {
704 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 708
                 this._localTracksInitialized = true;
709 709
                 con.addEventListener(
710 710
                     JitsiConnectionEvents.CONNECTION_FAILED,

Loading…
取消
儲存