내가 쓰고 있는 파이썬 스크립트에서 로깅 모듈을 사용하여 이벤트를 기록하려고 합니다. 내 로거를 구성하는 다음 코드가 있습니다. ERROR_FORMAT = "%(levelname)s at %(asctime)s in %(funcName)s in %(filename) at line %(lineno)d: %(message)s" DEBUG_FORMAT = "%(lineno)d in %(filename)s at %(asctime)s: %(message)s" LOG_CONFIG = {'version':1, 'formatters':{'error':{'format':ERROR_FORMAT}, 'debug':{'format':DEBUG_FORMAT}}, 'handlers':{'console':{'class':'loggi..