时间:2021-05-22
例子一
def filter(self, record): """Our custom record filtering logic. Built-in filtering logic (via logging.Filter) is too limiting. """ if not self.filters: return True matched = False rname = record.name # shortcut for name in self.filters: if rname == name or rname.startswith(name+'.'): matched = True return matched例子二
def _create_log_handlers(stream): """Create and return a default list of logging.Handler instances. Format WARNING messages and above to display the logging level, and messages strictly below WARNING not to display it. Args: stream: See the configure_logging() docstring. """ # Handles logging.WARNING and above. error_handler = logging.StreamHandler(stream) error_handler.setLevel(logging.WARNING) formatter = logging.Formatter("%(levelname)s: %(message)s") error_handler.setFormatter(formatter) # Create a logging.Filter instance that only accepts messages # below WARNING (i.e. filters out anything WARNING or above). non_error_filter = logging.Filter() # The filter method accepts a logging.LogRecord instance. non_error_filter.filter = lambda record: record.levelno < logging.WARNING non_error_handler = logging.StreamHandler(stream) non_error_handler.addFilter(non_error_filter) formatter = logging.Formatter("%(message)s") non_error_handler.setFormatter(formatter) return [error_handler, non_error_handler]例子三
def _default_handlers(stream): """Return a list of the default logging handlers to use. Args: stream: See the configure_logging() docstring. """ # Create the filter. def should_log(record): """Return whether a logging.LogRecord should be logged.""" # FIXME: Enable the logging of autoinstall messages once # autoinstall is adjusted. Currently, autoinstall logs # INFO messages when importing already-downloaded packages, # which is too verbose. if record.name.startswith("webkitpy.thirdparty.autoinstall"): return False return True logging_filter = logging.Filter() logging_filter.filter = should_log # Create the handler. handler = logging.StreamHandler(stream) formatter = logging.Formatter("%(name)s: [%(levelname)s] %(message)s") handler.setFormatter(formatter) handler.addFilter(logging_filter) return [handler]以上这篇python logging添加filter教程就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
python的logging模块python提供了一个日志处理的模块,那就是logging。导入logging模块使用以下命令:importlogginglog
详解使用python的logging模块在stdout输出前言: 使用python的logging模块时,除了想将日志记录在文件中外,还希望在前台执行pyth
实践环境WIN10Python3.6.5函数说明logging.getLogger(name=None)getLogger函数位于logging/__init_
python自带了日志模块logging,可以用来记录程序运行过程中的日志信息。同时python还有logbook模块用来取代logging模块,在很多的项目中
Django使用python自带的logging作为日志打印工具。简单介绍下logging。logging是线程安全的,其主要由4部分组成:Logger用户使用