debugging line added for testing

This commit is contained in:
blackbeard420 2020-01-05 17:14:26 -05:00
parent e64efeceec
commit 06f5a690aa

2
irc.go
View File

@ -145,6 +145,8 @@ func (c *Connection) parseMessage(line string) {
if c.PartCallback != nil {
c.PartCallback(from, target, msg)
}
default:
log.Printf("unhandled command: %s %s %s", cmd, target, msg)
}
}
}