From d54bf0d06c2091f5532e6ffd889e8b606965d0f3 Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 7 Dec 2017 11:33:16 -0800 Subject: [PATCH] relay: also log the extban prefix strings being readded --- plugins/relay.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/relay.py b/plugins/relay.py index e561c28..446fc22 100644 --- a/plugins/relay.py +++ b/plugins/relay.py @@ -1032,8 +1032,9 @@ def get_supported_cmodes(irc, remoteirc, channel, modes): # We broke up an acting extban earlier. Now, rewrite it into a new mode by joining the prefix and data together. while pending_extban_prefixes: next_prefix = pending_extban_prefixes.pop() - log.debug("(%s) relay.get_supported_cmodes: readding extban prefix %r to (%r, %r)", - irc.name, next_prefix, supported_char, arg) + log.debug("(%s) relay.get_supported_cmodes: readding extban prefix %r (%r) to (%r, %r) for %s", + irc.name, next_prefix, remoteirc.extbans_acting[next_prefix], + supported_char, arg, remoteirc.name) arg = remoteirc.extbans_acting[next_prefix] + arg if mode_parse_aborted: