Prints audio levels in debug mode.

This commit is contained in:
damencho 2016-02-09 16:49:46 -06:00
parent e688a5cb9f
commit bd16b9e346
1 changed files with 3 additions and 0 deletions

View File

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