From b5326e92a1cc5d87a153d9bfe8877ef60d7ab613 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Thu, 11 Aug 2022 20:21:39 +0100 Subject: [PATCH] Add even more debugging --- core/bot.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/bot.py b/core/bot.py index c63e705..579bab8 100644 --- a/core/bot.py +++ b/core/bot.py @@ -468,6 +468,8 @@ class IRCBot(IRCClient): if first_relay.wantList is True: first_relay.list(nocheck=True) debug("recheckList() asking for a list for {self.net} after final relay {self.num} connected") + else: + debug(f"recheckList() first relay wantList is False for {self.net} ({first_relay.num})") # name = self.net + "1" # if self.num == 1: # Only one instance should do a list @@ -477,8 +479,8 @@ class IRCBot(IRCClient): if allRelays: self.list() debug(f"recheckList() requested a list for {self.net} from {self.num}") - else: + debug(f"recheckList() not all relays active for {self.net}") self.wantList = True else: debug("recheckList() aborting LIST due to bad chanlimit")