From dc1dd0333a5d933733df3e28d9ac05d5b84ae50b Mon Sep 17 00:00:00 2001 From: Alex Bramley Date: Fri, 18 Dec 2009 23:59:12 +0000 Subject: [PATCH] Remove extraneous (and quite spammy) debug printing. --- irc/connection.go | 5 ----- irc/nickchan.go | 4 ---- 2 files changed, 9 deletions(-) diff --git a/irc/connection.go b/irc/connection.go index 5bf33ec..81fcbcc 100644 --- a/irc/connection.go +++ b/irc/connection.go @@ -58,7 +58,6 @@ func New(nick, user, name string) *Conn { func (conn *Conn) initialise() { // allocate meh some memoraaaahh - fmt.Println("irc.initialise(): initialising...") conn.nicks = make(map[string]*Nick) conn.chans = make(map[string]*Channel) conn.in = make(chan *Line, 32) @@ -84,7 +83,6 @@ func (conn *Conn) Connect(host string, pass ...) os.Error { } else if conn.sock, err = net.DialTCP("tcp", nil, addr); err != nil { return err } - fmt.Println("irc.Connect(): connected happily...") conn.Host = host conn.io = bufio.NewReadWriter( @@ -101,7 +99,6 @@ func (conn *Conn) Connect(host string, pass ...) os.Error { conn.User(conn.Me.Ident, conn.Me.Name) go conn.runLoop() - fmt.Println("irc.Connect(): launched runLoop() goroutine.") return nil } @@ -188,7 +185,6 @@ func (conn *Conn) runLoop() { conn.dispatchEvent(line) } } - fmt.Println("irc.runLoop(): Exited runloop...") // if we fall off the end here due to shutdown, // reinit everything once the runloop is done // so that Connect() can be called again. @@ -201,7 +197,6 @@ func (conn *Conn) shutdown() { close(conn.Err) conn.connected = false conn.sock.Close() - fmt.Println("irc.shutdown(): shut down sockets and channels!") } // Dumps a load of information about the current state of the connection to a diff --git a/irc/nickchan.go b/irc/nickchan.go index 9c6c86e..a050373 100644 --- a/irc/nickchan.go +++ b/irc/nickchan.go @@ -120,7 +120,6 @@ func (ch *Channel) AddNick(n *Nick) { // n.DelChannel(ch) to remove the association from the perspective of *irc.Nick. func (ch *Channel) DelNick(n *Nick) { if _, ok := ch.Nicks[n]; ok { - fmt.Printf("irc.Channel.DelNick(): deleting %s from %s\n", n.Nick, ch.Name) if n == n.conn.Me { // we're leaving the channel, so remove all state we have about it ch.Delete() @@ -136,7 +135,6 @@ func (ch *Channel) DelNick(n *Nick) { // Stops the channel from being tracked by state tracking handlers. Also calls // n.DelChannel(ch) for all nicks that are associated with the channel. func (ch *Channel) Delete() { - fmt.Printf("irc.Channel.Delete(): deleting %s\n", ch.Name) for n, _ := range ch.Nicks { n.DelChannel(ch) } @@ -170,7 +168,6 @@ func (n *Nick) AddChannel(ch *Channel) { // ch.DelNick(n) to remove the association from the perspective of *irc.Channel. func (n *Nick) DelChannel(ch *Channel) { if _, ok := n.Channels[ch]; ok { - fmt.Printf("irc.Nick.DelChannel(): deleting %s from %s\n", n.Nick, ch.Name) n.Channels[ch] = nil, false ch.DelNick(n) if len(n.Channels) == 0 { @@ -193,7 +190,6 @@ func (n *Nick) ReNick(neu string) { func (n *Nick) Delete() { // we don't ever want to remove *our* nick from conn.nicks... if n != n.conn.Me { - fmt.Printf("irc.Nick.Delete(): deleting %s\n", n.Nick) for ch, _ := range n.Channels { ch.DelNick(n) }