Changed the warning log to a debug log.

This commit is contained in:
Jeremy Fincher 2004-10-03 09:57:57 +00:00
parent df3d7a4ecb
commit eace0b5c55
1 changed files with 1 additions and 1 deletions

View File

@ -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):