python logging添加filter教程
例子一
deffilter(self,record): """Ourcustomrecordfilteringlogic. Built-infilteringlogic(vialogging.Filter)istoolimiting. """ ifnotself.filters: returnTrue matched=False rname=record.name#shortcut fornameinself.filters: ifrname==nameorrname.startswith(name+'.'): matched=True returnmatched
例子二
def_create_log_handlers(stream):
"""Createandreturnadefaultlistoflogging.Handlerinstances.
FormatWARNINGmessagesandabovetodisplaythelogginglevel,and
messagesstrictlybelowWARNINGnottodisplayit.
Args:
stream:Seetheconfigure_logging()docstring.
"""
#Handleslogging.WARNINGandabove.
error_handler=logging.StreamHandler(stream)
error_handler.setLevel(logging.WARNING)
formatter=logging.Formatter("%(levelname)s:%(message)s")
error_handler.setFormatter(formatter)
#Createalogging.Filterinstancethatonlyacceptsmessages
#belowWARNING(i.e.filtersoutanythingWARNINGorabove).
non_error_filter=logging.Filter()
#Thefiltermethodacceptsalogging.LogRecordinstance.
non_error_filter.filter=lambdarecord:record.levelno
例子三
def_default_handlers(stream):
"""Returnalistofthedefaultlogginghandlerstouse.
Args:
stream:Seetheconfigure_logging()docstring.
"""
#Createthefilter.
defshould_log(record):
"""Returnwhetheralogging.LogRecordshouldbelogged."""
#FIXME:Enabletheloggingofautoinstallmessagesonce
#autoinstallisadjusted.Currently,autoinstalllogs
#INFOmessageswhenimportingalready-downloadedpackages,
#whichistooverbose.
ifrecord.name.startswith("webkitpy.thirdparty.autoinstall"):
returnFalse
returnTrue
logging_filter=logging.Filter()
logging_filter.filter=should_log
#Createthehandler.
handler=logging.StreamHandler(stream)
formatter=logging.Formatter("%(name)s:[%(levelname)s]%(message)s")
handler.setFormatter(formatter)
handler.addFilter(logging_filter)
return[handler]
以上这篇pythonlogging添加filter教程就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。