Add ability to silence callback handler

This commit is contained in:
Michael Jard
2011-05-21 21:06:22 -07:00
parent 9d322aca1a
commit 78a4c71736
3 changed files with 8 additions and 2 deletions

1
irc.go
View File

@@ -200,6 +200,7 @@ func IRC(nick, user string) *IRCConnection {
irc.Error = make(chan os.Error)
irc.nick = nick
irc.user = user
irc.VerboseCallbackHandler = true
irc.setupCallbacks()
return irc
}