Removes printing audio levels by default in debug mode and makes it optional.
This commit is contained in:
parent
955e01a750
commit
165507b83a
|
@ -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…
Reference in New Issue