feat \#16 - add unittest for backpressure_handler and logging_utils
Unit test coverage / pytest (push) Failing after 3h11m10s

This commit is contained in:
Stanislav Hejny
2025-05-09 22:15:11 +01:00
parent 5684deb65e
commit bc98351493
10 changed files with 844 additions and 83 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ def logging_debug(msg: str, *args) -> None:
_thread_id = threading.get_ident()
module, line_number, function_name = get_context_info()
if module and line_number and function_name:
logging.info(
logging.debug(
f"{_thread_id}:{__version__} [DBG] '{msg}' ---> '{module}':{line_number}, '{function_name}()'",
*args,
)