From a39f9bbddc438f842393e523eb5e56f897dee22c Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 6 Dec 2015 17:40:06 -0800 Subject: [PATCH] relay: fix logging syntax --- plugins/relay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/relay.py b/plugins/relay.py index 27bbc80..e091e96 100644 --- a/plugins/relay.py +++ b/plugins/relay.py @@ -715,7 +715,7 @@ def handle_messages(irc, numeric, command, args): numeric = irc.pseudoclient.uid elif numeric not in irc.users: # Sender didn't pass the check above, AND isn't a user. - log.debug('(%s) relay: Unknown message sender %s.', numeric) + log.debug('(%s) relay: Unknown message sender %s.', irc.name, numeric) return relay = getRelay((irc.name, target)) remoteusers = relayusers[(irc.name, numeric)]