Skip to content

Commit b4a63fa

Browse files
committed
Prevent entrymsgs from spamming warnings
1 parent be6116f commit b4a63fa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

plugins/Services/plugin.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,8 @@ def doChanservNotice(self, irc, msg):
264264
on)
265265
elif 'inviting' in s:
266266
self.log.debug('Got "Inviting to channel" from ChanServ %s.', on)
267+
elif s.startswith('[#'):
268+
self.log.debug('Got entrymsg from ChanServ %s.', on)
267269
else:
268270
self.log.warning('Got unexpected notice from ChanServ %s: %r.',
269271
on, msg)

0 commit comments

Comments
 (0)