Comment our use of sendMsg instead of queueMsg.

This commit is contained in:
Jeremy Fincher 2004-08-02 19:42:48 +00:00
parent c08ee5ecc6
commit 64d5f53dc4
1 changed files with 4 additions and 0 deletions

View File

@ -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