2026-04-14 09:54:26 +08:00

15 lines
401 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.

"""
日志系统入口
提供 get_logger 接口,返回带颜色控制台输出的 logger。
注意:文件夹名已改为 logging_ 以避免与标准库的 logging 模块冲突。
"""
# 由于文件夹名已改为 logging_不再与标准库的 logging 冲突
# 直接导入标准库的 logging 模块
import logging
# 现在可以安全导入 color_logger
from .color_logger import get_logger