Make channel join notification a TRACE

This commit is contained in:
Mark Veidemanis 2022-08-11 21:47:44 +01:00
parent 5c2ef740e6
commit 6306231098
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ import main
from core.relay import sendRelayNotification from core.relay import sendRelayNotification
from modules import chankeep, counters, helpers, monitor, regproc, userinfo from modules import chankeep, counters, helpers, monitor, regproc, userinfo
from utils.dedup import dedup 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.log import error, log, warn
from utils.logging.send import sendAll from utils.logging.send import sendAll
from utils.parsing import parsen from utils.parsing import parsen
@ -116,7 +116,7 @@ class IRCBot(IRCClient):
if i in main.blacklist[self.net]: if i in main.blacklist[self.net]:
debug("Not joining blacklisted channel %s on %s - %i" % (i, self.net, self.num)) debug("Not joining blacklisted channel %s on %s - %i" % (i, self.net, self.num))
continue 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) reactor.callLater(sleeptime, self.join, i)
sleeptime += increment sleeptime += increment
if sleeptime == 10: if sleeptime == 10: