From 56741a7157c3398dab86d9064a4373fca3c004d5 Mon Sep 17 00:00:00 2001 From: Apostolis Bessas Date: Thu, 29 May 2025 08:11:01 +0300 Subject: [PATCH] Set the log level to debug for a log message The line in production adds a lot of noise to logs. --- tasktiger/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasktiger/worker.py b/tasktiger/worker.py index a1716b1..38d4fd1 100644 --- a/tasktiger/worker.py +++ b/tasktiger/worker.py @@ -894,7 +894,7 @@ def _queue_periodic_tasks(self) -> None: # Task is already queued, scheduled, or running. if any(results): - self.log.info( + self.log.debug( "periodic task already in queue", func=task.serialized_func, result=results,