From ef14b1cc07a6e2b2d0d60223d8a019da532078de Mon Sep 17 00:00:00 2001 From: BreadTube Date: Mon, 29 Sep 2025 23:59:08 +0900 Subject: [PATCH] Smaller logs when subscriptions is updated --- breadtube_bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/breadtube_bot/bot.py b/breadtube_bot/bot.py index 206cdf6..b5d9276 100644 --- a/breadtube_bot/bot.py +++ b/breadtube_bot/bot.py @@ -251,7 +251,7 @@ class Bot: self.config = new_config if new_subscriptions is not None: - self.logger.info('Loading subscriptions: %s', new_subscriptions) + self.logger.info('Loading subscriptions') SubscriptionHelper.update_subscriptions(new=new_subscriptions, previous=self._yt_subscriptions) self._yt_subscriptions = new_subscriptions self.tasks.append((Bot.Task.INIT_SUBS, time.time() + 1, None))