fix: looger path

This commit is contained in:
liuyuanchuang
2026-03-12 12:41:26 +08:00
parent 92b56d61d8
commit d1050acbdc
2 changed files with 3 additions and 4 deletions

View File

@@ -141,7 +141,7 @@ _logger: logging.Logger | None = None
def get_logger() -> logging.Logger:
"""Get the global logger instance."""
"""Get the global logger instance, initializing if needed."""
global _logger
if _logger is None:
_logger = setup_logging()