mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Comment our use of sendMsg instead of queueMsg.
This commit is contained in:
parent
c08ee5ecc6
commit
64d5f53dc4
@ -91,6 +91,10 @@ class IrcHandler(logging.Handler):
|
||||
if not ircdb.checkCapability(hostmask, capability):
|
||||
msgOk = False
|
||||
if msgOk:
|
||||
# We use sendMsg here because queueMsg can cause some
|
||||
# WARNING logs, which might be sent here, which might
|
||||
# cause some more WARNING logs, etc. and that would be
|
||||
# baaaaaad.
|
||||
irc.sendMsg(msg)
|
||||
else:
|
||||
print '*** Not sending to %r' % target
|
||||
|
Loading…
Reference in New Issue
Block a user