From 6306231098faf92b04b0ac383c33fde269844151 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Thu, 11 Aug 2022 21:47:44 +0100 Subject: [PATCH] Make channel join notification a TRACE --- core/bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/bot.py b/core/bot.py index 8014f4b..0808ee9 100644 --- a/core/bot.py +++ b/core/bot.py @@ -18,7 +18,7 @@ import main from core.relay import sendRelayNotification from modules import chankeep, counters, helpers, monitor, regproc, userinfo from utils.dedup import dedup -from utils.logging.debug import debug +from utils.logging.debug import debug, trace from utils.logging.log import error, log, warn from utils.logging.send import sendAll from utils.parsing import parsen @@ -116,7 +116,7 @@ class IRCBot(IRCClient): if i in main.blacklist[self.net]: debug("Not joining blacklisted channel %s on %s - %i" % (i, self.net, self.num)) continue - debug(self.net, "-", self.num, ": joining", i, "in", sleeptime, "seconds") + trace(self.net, "-", self.num, ": joining", i, "in", sleeptime, "seconds") reactor.callLater(sleeptime, self.join, i) sleeptime += increment if sleeptime == 10: