From 5cfa193b8db69b8749a6acbeb489c92e521a0b68 Mon Sep 17 00:00:00 2001 From: David Kaltschmidt Date: Mon, 9 Nov 2015 13:00:44 +0100 Subject: [PATCH] Comment out console.log --- client/app/scripts/dispatcher/app-dispatcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/scripts/dispatcher/app-dispatcher.js b/client/app/scripts/dispatcher/app-dispatcher.js index 9c00b2b46..1f24e13fc 100644 --- a/client/app/scripts/dispatcher/app-dispatcher.js +++ b/client/app/scripts/dispatcher/app-dispatcher.js @@ -5,7 +5,7 @@ const AppDispatcher = new flux.Dispatcher(); AppDispatcher.dispatch = _.wrap(flux.Dispatcher.prototype.dispatch, function(func) { const args = Array.prototype.slice.call(arguments, 1); - console.log(args[0]); + // console.log(args[0]); func.apply(this, args); });