기존의 모든 답변과 많은 사용 경험을 결합하여 새로운 레벨을 완벽하게 원활하게 사용하기 위해 수행해야 할 모든 일의 목록을 생각해 냈다고 생각합니다. 아래 단계에서는 TRACE
값이 있는 새 레벨 을 추가한다고 가정합니다 logging.DEBUG - 5 == 5
.
logging.addLevelName(logging.DEBUG - 5, 'TRACE')
이름으로 참조 할 수 있도록 내부적으로 등록 된 새 레벨을 가져 오려면 호출해야합니다.
logging
일관성을 위해 새 레벨을 속성으로 추가해야합니다 logging.TRACE = logging.DEBUG - 5
.
- 호출 된 메소드를 모듈에
trace
추가해야합니다 logging
. 그것은 단지처럼 행동한다 debug
, info
등
- 호출 된 메소드를
trace
현재 구성된 로거 클래스에 추가해야합니다. 이 보장 100 %가 아니기 때문에 logging.Logger
, 사용하는 logging.getLoggerClass()
대신.
모든 단계는 아래 방법에 설명되어 있습니다.
def addLoggingLevel(levelName, levelNum, methodName=None):
"""
Comprehensively adds a new logging level to the `logging` module and the
currently configured logging class.
`levelName` becomes an attribute of the `logging` module with the value
`levelNum`. `methodName` becomes a convenience method for both `logging`
itself and the class returned by `logging.getLoggerClass()` (usually just
`logging.Logger`). If `methodName` is not specified, `levelName.lower()` is
used.
To avoid accidental clobberings of existing attributes, this method will
raise an `AttributeError` if the level name is already an attribute of the
`logging` module or if the method name is already present
Example
-------
>>> addLoggingLevel('TRACE', logging.DEBUG - 5)
>>> logging.getLogger(__name__).setLevel("TRACE")
>>> logging.getLogger(__name__).trace('that worked')
>>> logging.trace('so did this')
>>> logging.TRACE
5
"""
if not methodName:
methodName = levelName.lower()
if hasattr(logging, levelName):
raise AttributeError('{} already defined in logging module'.format(levelName))
if hasattr(logging, methodName):
raise AttributeError('{} already defined in logging module'.format(methodName))
if hasattr(logging.getLoggerClass(), methodName):
raise AttributeError('{} already defined in logger class'.format(methodName))
# This method was inspired by the answers to Stack Overflow post
# http://stackoverflow.com/q/2183233/2988730, especially
# http://stackoverflow.com/a/13638084/2988730
def logForLevel(self, message, *args, **kwargs):
if self.isEnabledFor(levelNum):
self._log(levelNum, message, args, **kwargs)
def logToRoot(message, *args, **kwargs):
logging.log(levelNum, message, *args, **kwargs)
logging.addLevelName(levelNum, levelName)
setattr(logging, levelName, levelNum)
setattr(logging.getLoggerClass(), methodName, logForLevel)
setattr(logging, methodName, logToRoot)