refactor: rename logging_config.yaml -> .logging_config.yaml

This commit is contained in:
2025-10-31 21:26:08 +01:00
parent d5de644828
commit d66fe07438
2 changed files with 1 additions and 1 deletions

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: