From ff82ed2454ee261b2bc815ee3fa0ba2f15e23421 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Mon, 13 Oct 2014 21:10:48 -0700 Subject: [PATCH] removed debug statements from websocket --- server/pubsub/channel.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/pubsub/channel.go b/server/pubsub/channel.go index c7469e768..63001c5fe 100644 --- a/server/pubsub/channel.go +++ b/server/pubsub/channel.go @@ -66,7 +66,6 @@ func (c *Channel) start() { case sub := <-c.unsubscribe: delete(c.subscriptions, sub) close(sub.send) - log.Println("usubscribed to subscription") case sub := <-c.subscribe: c.subscriptions[sub] = true @@ -118,7 +117,6 @@ func replay(s *Subscription, history []interface{}) { } func (c *Channel) stop() { - log.Println("subscription stopped") for sub := range c.subscriptions { sub.Close() }