comment out spammy CTD logging

pull/21833/head
Matthew Hodgson 2017-04-28 00:52:31 +01:00
parent b91f53652d
commit 19482d751d
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class ConstantTimeDispatcher {
dispatch(type, arg, params) {
if (!this.listeners[type] || !this.listeners[type][arg]) {
console.warn("No registered listeners for dispatch (type=" + type + ", arg=" + arg + ")");
//console.warn("No registered listeners for dispatch (type=" + type + ", arg=" + arg + ")");
return;
}
this.listeners[type][arg].forEach(listener=>{