diff --git a/irc/socket.go b/irc/socket.go index 63a5bebd..e9ed86f7 100644 --- a/irc/socket.go +++ b/irc/socket.go @@ -87,7 +87,7 @@ func (socket *Socket) readLines() { func (socket *Socket) writeLines() { for line := range socket.send { - if DEBUG_CLIENT { + if DEBUG_NET { log.Printf("%s ← %s", socket, line) } if _, err := socket.writer.WriteString(line); socket.maybeLogWriteError(err) {