From 4391272e503a9550d4d24fbec848843979d810b9 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sun, 22 Aug 2004 06:26:19 +0000 Subject: [PATCH] Let's log what the actual message is. --- src/Owner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Owner.py b/src/Owner.py index 55a0a6509..38c52fc08 100644 --- a/src/Owner.py +++ b/src/Owner.py @@ -202,7 +202,7 @@ class Owner(privmsgs.CapabilityCheckingPrivmsg): def inFilter(self, irc, msg): if msg.command == 'PRIVMSG' and msg.nick == irc.nick: - self.log.warning('Somehow sent a message to myself, ignoring.') + self.log.warning('Somehow sent a message to myself: %r.', msg) return None return msg