From 9ea322111c4d64f588c861aee5657f3944d1cb91 Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Wed, 20 Mar 2024 14:01:24 +1300 Subject: [PATCH] class not added put into debug logging --- core/auto_process/managers/sickbeard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/auto_process/managers/sickbeard.py b/core/auto_process/managers/sickbeard.py index 0e63a0a44..500b288eb 100644 --- a/core/auto_process/managers/sickbeard.py +++ b/core/auto_process/managers/sickbeard.py @@ -311,7 +311,7 @@ def _init_fork(self): # Create the fork object and pass self (SickBeardInit) to it for all the data, like Config. self.fork_obj = mapped_forks[self.fork](self) else: - logger.info('{section}:{category} Could not create a fork object for {fork}. Probaly class not added yet.'.format( + logger.debug('{section}:{category} Could not create a fork object for {fork}. Probaly class not added yet.'.format( section=self.section, category=self.input_category, fork=self.fork) )