Update tests/test_utils_logign.py
Run CI Tests / test (push) Successful in 1m5s

This commit is contained in:
2025-07-28 16:32:16 +02:00
parent ddceb3f607
commit 84d93cc778
+1 -1
View File
@@ -15,7 +15,7 @@ def setup_logging():
# Clear existing handlers for pytest capture
for handler in log.handlers[:]:
log.removeHandler(handler)
handler = logging.StreamHandler()
handler = logging.StreamHandler(sys.stderr)
log.addHandler(handler)
log.setLevel(logging.DEBUG)