Prevent entrymsgs from spamming warnings

This commit is contained in:
Milos Petkovic 2013-06-17 08:53:44 +02:00
parent be6116f958
commit b4a63fa89e

View File

@ -264,6 +264,8 @@ class Services(callbacks.Plugin):
on)
elif 'inviting' in s:
self.log.debug('Got "Inviting to channel" from ChanServ %s.', on)
elif s.startswith('[#'):
self.log.debug('Got entrymsg from ChanServ %s.', on)
else:
self.log.warning('Got unexpected notice from ChanServ %s: %r.',
on, msg)