Restructure logging #21

Merged
k.marinus merged 11 commits from refactor/logging into dev 2025-11-05 15:31:06 +00:00
2 changed files with 1 additions and 1 deletions
Showing only changes of commit d66fe07438 - Show all commits

View File

@@ -33,7 +33,7 @@ def add_logging_level(level_name: str, level_num: int, method_name: str | None =
setattr(logging, method_name, log_to_root)
def setup_logging(path: str = "logging_config.yaml") -> None:
def setup_logging(path: str = ".logging_config.yaml") -> None:
if os.path.exists(path):
with open(path) as f:
try: