log_utils.py 107 B

12345
  1. import logging
  2. # 配置日志
  3. logging.basicConfig(level=logging.INFO)
  4. logger = logging.getLogger(__name__)