Files
Uni-Lab-OS/unilabos/utils/__init__.py
Junhan Chang c78ac482d8 Initial commit
2025-04-17 15:19:47 +08:00

8 lines
275 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from unilabos.utils.log import logger
# 确保日志配置在导入utils包时自动应用
# 这样任何导入utils包或其子模块的代码都会自动配置好日志
# 导出logger使其可以通过from unilabos.utils import logger直接导入
__all__ = ['logger']