From dc2daeafdca5788beffb294c578e8db2d9217dfd Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Fri, 17 Jul 2015 13:07:22 +0200 Subject: [PATCH] Don't be so noisy with pusher subscription --- app/utils/pusher.coffee | 1 - 1 file changed, 1 deletion(-) diff --git a/app/utils/pusher.coffee b/app/utils/pusher.coffee index 881fa789..8d2821a8 100644 --- a/app/utils/pusher.coffee +++ b/app/utils/pusher.coffee @@ -28,7 +28,6 @@ TravisPusher.prototype.unsubscribeAll = (channels) -> TravisPusher.prototype.subscribe = (channel) -> return unless channel channel = @prefix(channel) - console.log("subscribing to #{channel}") unless @pusher?.channel(channel) @pusher.subscribe(channel).bind_all((event, data) => @receive(event, data))