From c656abf096c1e2dbf6d030f7224716e8bf703935 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Wed, 28 Dec 2011 11:37:10 +0100 Subject: [PATCH] irclib.py: Add network name to 'Outgoing message' debug log message --- src/irclib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/irclib.py b/src/irclib.py index 82ada6441..190194f1d 100644 --- a/src/irclib.py +++ b/src/irclib.py @@ -764,7 +764,7 @@ class Irc(IrcCommandDispatcher): # On second thought, we need this for testing. if world.testing: self.state.addMsg(self, msg) - log.debug('Outgoing message: %s', str(msg).rstrip('\r\n')) + log.debug('Outgoing message (%s): %s', self.network, str(msg).rstrip('\r\n')) return msg elif self.zombie: # We kill the driver here so it doesn't continue to try to