Changed the priority of the ignoring logged message.

This commit is contained in:
Jeremy Fincher 2003-11-26 18:46:47 +00:00
parent d9cac7bfe4
commit 41ab05862f
1 changed files with 1 additions and 1 deletions

View File

@ -616,7 +616,7 @@ class Privmsg(irclib.IrcCallback):
if self.noIgnore or not ircdb.checkIgnored(msg.prefix,msg.args[0]):
self.__parent.__call__(irc, msg)
else:
self.log.info('Ignoring %s', msg.prefix)
self.log.log(0, 'Ignoring %s', msg.prefix)
else:
self.__parent.__call__(irc, msg)