From eace0b5c555c4f5dabee5a898489586dc7bc1873 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sun, 3 Oct 2004 09:57:57 +0000 Subject: [PATCH] Changed the warning log to a debug log. --- plugins/Bayes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Bayes.py b/plugins/Bayes.py index e58e9dcef..6848a89bb 100644 --- a/plugins/Bayes.py +++ b/plugins/Bayes.py @@ -133,7 +133,7 @@ class Bayes(callbacks.Privmsg): (kind, prob) = kind prob *= 100 text = utils.ellipsisify(text, 30) - self.log.warning('Classified %r as %s. (%.2f%%)', text, kind, prob) + self.log.debug('Classified %r as %s. (%.2f%%)', text, kind, prob) self.db.trainNick(channel, msg.nick, text) def guess(self, irc, msg, args, channel, text):