Removes printing audio levels by default in debug mode and makes it optional.

pull/679/head
damencho 9 years ago
parent 955e01a750
commit 165507b83a
  1. 3
      conference.js

@ -1178,7 +1178,8 @@ export default {
if(config.debug)
{
this.audioLevelsMap[id] = lvl;
console.log("AudioLevel:" + id + "/" + lvl);
if(config.debugAudioLevels)
console.log("AudioLevel:" + id + "/" + lvl);
}
APP.UI.setAudioLevel(id, lvl);

Loading…
Cancel
Save