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

This commit is contained in:
damencho 2016-06-07 16:40:43 -05:00
parent 955e01a750
commit 165507b83a
1 changed files with 2 additions and 1 deletions

View File

@ -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);