Add even more debugging

This commit is contained in:
Mark Veidemanis 2022-08-13 23:18:56 +01:00
parent f1229a76e1
commit 653d9ea4f9
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 1 additions and 0 deletions

View File

@ -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}")