From 653d9ea4f9cf65da370729798456e8ef0207c041 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Sat, 13 Aug 2022 23:18:56 +0100 Subject: [PATCH] Add even more debugging --- modules/chankeep.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/chankeep.py b/modules/chankeep.py index 5816c68..6c61466 100644 --- a/modules/chankeep.py +++ b/modules/chankeep.py @@ -32,6 +32,7 @@ def getActiveRelays(net): for i in enabledRelays: name = net + str(i) if name in main.IRCPool.keys(): + debug(f"getActiveRelays() {net}: {i} auth:{main.IRCPool[name].authenticated} conn:{main.IRCPool[name].isconnected}") if main.IRCPool[name].authenticated and main.IRCPool[name].isconnected: activeRelays.append(i) debug(f"getActiveRelays() {net}: {activeRelays}")