From 0970ee980f134ea3019dbc5ef188cd140e319bb3 Mon Sep 17 00:00:00 2001 From: Chris Sexton Date: Sun, 26 Aug 2012 21:54:27 -0400 Subject: [PATCH] Quieting down the console --- bot/handlers.go | 1 - plugins/beers.go | 1 - 2 files changed, 2 deletions(-) diff --git a/bot/handlers.go b/bot/handlers.go index 10946fe..272316a 100644 --- a/bot/handlers.go +++ b/bot/handlers.go @@ -195,7 +195,6 @@ func (b *Bot) Filter(message Message, input string) string { blacklist := make(map[string]bool) blacklist["$and"] = true for len(varname) > 0 && !blacklist[varname] { - fmt.Printf("Trying to match '%s'\n", varname) var result []Variable b.varColl.Find(bson.M{"variable": varname}).All(&result) if len(result) == 0 { diff --git a/plugins/beers.go b/plugins/beers.go index 1ed7678..3a3754a 100644 --- a/plugins/beers.go +++ b/plugins/beers.go @@ -179,7 +179,6 @@ func (p *BeersPlugin) reportCount(nick, channel string, himself bool) { } } p.Bot.SendMessage(channel, msg) - fmt.Println("I should have reported a beer count!") } func (p *BeersPlugin) puke(user *bot.User, channel string) {