Don't be so noisy with pusher subscription

This commit is contained in:
Piotr Sarnacki 2015-07-17 13:07:22 +02:00
parent 0ae751f7dc
commit dc2daeafdc

View File

@ -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))