[dev] rename logger format

This commit is contained in:
jinli.yl 2024-06-24 14:16:37 +08:00
parent 1887138e47
commit d85e370d4a

View file

@ -2,7 +2,7 @@ import logging
from logging.handlers import RotatingFileHandler
from pathlib import Path
LOG_FORMAT = "%(asctime)s %(levelname)s %(trace_id)s %(module)s:%(lineno)d] %(message)s"
LOG_FORMAT = "%(asctime)s %(levelname)s %(threadName)s %(module)s:%(lineno)d] %(message)s"
DATE_FORMAT = "%Y-%m-%d %H:%M:%S"
LOGGER_DICT = {}