如何在Python中自定义logging.Handler中获取日志记录的级别?

时间:2010-06-17 13:16:03

标签: python logging

我想通过a来制作自定义记录器方法 自定义日志记录处理程序或自定义日志程序类 并将记录记录分发给不同的目标。

例如:

log = logging.getLogger('application')

log.progress('time remaining %d sec' % i)
    custom method for logging to:
            - database status filed
            - console custom handler showing changes in a single console line

log.data(kindOfObject)
    custom method for logging to:
            - database
            - special data format

log.info
log.debug
log.error
log.critical
    all standard logging methods:
        - database status/error/debug filed
        - console: append text line
        - logfile

如果我通过覆盖emit方法使用自定义LoggerHandler, 我无法区分日志记录的级别。 是否有任何其他可能性来获取记录级别的运行时信息?

class ApplicationLoggerHandler(logging.Handler):

  def emit(self, record):
    # at this place I need to know the level of the record (info, error, debug, critical)?

有什么建议吗?

1 个答案:

答案 0 :(得分:10)

recordLogRecord的一个实例:

>>> import logging
>>> rec = logging.LogRecord('bob', 1, 'foo', 23, 'ciao', (), False)

并且您的方法可以访问感兴趣的属性(我正在分割dir的结果以便于阅读):

>>> dir(rec)
['__doc__', '__init__', '__module__', '__str__', 'args', 'created',
 'exc_info', 'exc_text', 'filename', 'funcName', 'getMessage', 'levelname',
 'levelno', 'lineno', 'module', 'msecs', 'msg', 'name', 'pathname', 'process',
 'processName', 'relativeCreated', 'thread', 'threadName']
>>> rec.levelno
1
>>> rec.levelname
'Level 1'

等等。 (rec.getMessage()是您在rec上使用的一种方法 - 它将消息格式化为字符串,插入参数)。