summaryrefslogtreecommitdiff
path: root/ws.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ws.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/ws.go b/ws.go
index a4ef0c6..16f5a5f 100644
--- a/ws.go
+++ b/ws.go
@@ -361,13 +361,11 @@ func handleConn(
chanPoolLock.Lock()
defer chanPoolLock.Unlock()
chanPool[session] = &send
- log.Printf("Channel %v added to pool for session %s, userID %s\n", &send, session, userID)
}()
defer func() {
chanPoolLock.Lock()
defer chanPoolLock.Unlock()
delete(chanPool, session)
- log.Printf("Purging channel %v for session %s userID %s, from pool\n", &send, session, userID)
}()
/*