feat: use logging

This commit is contained in:
zhayujie
2022-12-11 21:05:00 +08:00
parent a1f45344b6
commit eef0dfc4fa
4 changed files with 30 additions and 12 deletions

16
common/log.py Normal file
View File

@@ -0,0 +1,16 @@
import logging
import sys
def _get_logger():
log = logging.getLogger('log')
log.setLevel(logging.DEBUG)
console_handle = logging.StreamHandler(sys.stdout)
console_handle.setFormatter(logging.Formatter('[%(levelname)s][%(asctime)s][%(filename)s:%(lineno)d] - %(message)s',
datefmt='%Y-%m-%d %H:%M:%S'))
log.addHandler(console_handle)
return log
# 日志句柄
logger = _get_logger()