Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Revert "comment out spammy CTD logging"
Browse files Browse the repository at this point in the history
This reverts commit 19482d7.
  • Loading branch information
dbkr committed May 16, 2017
1 parent ff9c404 commit 1aabaec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ConstantTimeDispatcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -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=>{
Expand Down

0 comments on commit 1aabaec

Please sign in to comment.