如何在不知道其记录器名称的情况下使一个类的日志记录静音?相关课程为qualysconnect。
import logging
import qualysconnect.util
# Set log options. This is my attempt to silence it.
logger_qc = logging.getLogger('qualysconnect')
logger_qc.setLevel(logging.ERROR)
# Define a Handler which writes WARNING messages or higher to the sys.stderr
logger_console = logging.StreamHandler()
logger_console.setLevel(logging.ERROR)
# Set a format which is simpler for console use.
formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
# Tell the handler to use this format.
logger_console.setFormatter(formatter)
# Add the handler to the root logger
logging.getLogger('').addHandler(logger_console)
# 'application' code
logging.debug('debug message')
logging.info('info message')
logging.warn('warn message')
logging.error('error message')
logging.critical('critical message')
注释import qualysconnect.util
时的输出:
root : ERROR error message
root : CRITICAL critical message
保留import qualysconnect.util
时的输出:
WARNING:root:warn message
ERROR:root:error message
root : ERROR error message
CRITICAL:root:critical message
root : CRITICAL critical message
答案 0 :(得分:0)
可悲的是,由于他们没有为记录器定义名称,而且qualysconnect.util
他们甚至没有getLogger
来电或getChild
来电,你不能在一个不会影响整个模块的日志记录行为而不会变脏的情况下做一些事情。
我能想到的唯一干净选项是报告他们将日志记录作为错误处理的方式,并提交修补程序请求,您可以使用以下内容修改qualysconnect.util
日志记录语句:
import logging
logger = logging.getLogger('qualysconnect').getChild('util')
并将所有logging.info()
,logging.debug()
...替换为logger.info()
,logger.debug()
...
脏选项:您可以修补qualysconnect.util
模块,以便用记录器对象替换其logging
对象:
import qualysconnect.util
logger_qc = logging.getLogger('qualysconnect')
logger_qc.setLevel(logging.ERROR)
qualysconnect.util.logging = logger_qc.getLogger('qualysconnect').getChild('util')
qualysconnect.util.logging.disable(logging.CRITICAL) # will disable all logging for CRITICAL and below
当您向上游项目发送补丁请求时,这可能是一个有效的解决方案,但肯定不是一个长期的工作解决方案。
或者你可以简单地关闭整个qualysconnect
模块中的所有注销,但我认为这不是你想要的。