Browse Source

Removed debug logging of register and unregister.

pull/3/head
Simon Eisenmann 12 years ago
parent
commit
4f449341a2
  1. 6
      src/app/spreed-speakfreely-server/hub.go

6
src/app/spreed-speakfreely-server/hub.go

@ -237,12 +237,12 @@ func (h *Hub) registerHandler(c *Connection) {
ec.close() ec.close()
h.connectionTable[c.Id] = c h.connectionTable[c.Id] = c
h.mutex.Unlock() h.mutex.Unlock()
log.Printf("Register (%d) from %s: %s (existing)\n", c.Idx, c.RemoteAddr, c.Id) //log.Printf("Register (%d) from %s: %s (existing)\n", c.Idx, c.RemoteAddr, c.Id)
} else { } else {
h.connectionTable[c.Id] = c h.connectionTable[c.Id] = c
//fmt.Println("registered", c.Id) //fmt.Println("registered", c.Id)
h.mutex.Unlock() h.mutex.Unlock()
log.Printf("Register (%d) from %s: %s\n", c.Idx, c.RemoteAddr, c.Id) //log.Printf("Register (%d) from %s: %s\n", c.Idx, c.RemoteAddr, c.Id)
h.server.OnRegister(c) h.server.OnRegister(c)
} }
@ -259,7 +259,7 @@ func (h *Hub) unregisterHandler(c *Connection) {
delete(h.connectionTable, c.Id) delete(h.connectionTable, c.Id)
delete(h.userTable, c.Id) delete(h.userTable, c.Id)
h.mutex.Unlock() h.mutex.Unlock()
log.Printf("Unregister (%d) from %s: %s\n", c.Idx, c.RemoteAddr, c.Id) //log.Printf("Unregister (%d) from %s: %s\n", c.Idx, c.RemoteAddr, c.Id)
h.server.OnUnregister(c) h.server.OnUnregister(c)
} }

Loading…
Cancel
Save