mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2025-12-17 21:11:12 +00:00
8 lines
275 B
Python
8 lines
275 B
Python
from unilabos.utils.log import logger
|
||
|
||
# 确保日志配置在导入utils包时自动应用
|
||
# 这样任何导入utils包或其子模块的代码都会自动配置好日志
|
||
|
||
# 导出logger,使其可以通过from unilabos.utils import logger直接导入
|
||
__all__ = ['logger']
|