Changed a warning log to info.

This commit is contained in:
Jeremy Fincher 2004-12-10 06:29:23 +00:00
parent e793bf7812
commit 265d620a0e

View File

@ -172,8 +172,8 @@ class IrcMsgQueue(object):
if msg in self.msgs and \
not conf.supybot.protocols.irc.queueDuplicateMessages():
s = str(msg).strip()
log.warning('Not adding message %s to queue, already added.',
utils.quoted(s))
log.info('Not adding message %s to queue, already added.',
utils.quoted(s))
return False
else:
self.msgs.add(msg)