From 2b04cbe239eaa1180beef5ba1fabc6482b3ee265 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Tue, 5 Aug 2025 10:36:49 +0900 Subject: [PATCH] Remove Log __del__ cleanup --- src/corelibs/logging_handling/log.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/corelibs/logging_handling/log.py b/src/corelibs/logging_handling/log.py index aa11885..2cec79a 100644 --- a/src/corelibs/logging_handling/log.py +++ b/src/corelibs/logging_handling/log.py @@ -122,9 +122,6 @@ class LogParent: self.log_queue: 'Queue[str] | None' = None self.handlers: dict[str, Any] = {} - def __del__(self): - self._cleanup() - # FIXME: we need to add a custom formater to add stack level listing if we want to # Important note, although they exist, it is recommended to use self.logger.NAME directly # so that the correct filename, method and row number is set