python配置日志记录
1、三种配置日志记录的方法
调用列出的配置方法显式创建记录器,处理器和格式化器。
创建日志配置文件并使用fileConfig()函数读取它。
创建配置信息字典并将其传递给dictConfig()函数。
2、实例
以下示例使用Python代码配置一个非常简单的记录器,一个控制台处理器和一个简单的格式化器:
importlogging
#createlogger
logger=logging.getLogger('simple_example')
logger.setLevel(logging.DEBUG)
#创建控制台处理器并设置级别进行调试
ch=logging.StreamHandler()
ch.setLevel(logging.DEBUG)
#createformatter
formatter=logging.Formatter('%(asctime)s-%(name)s-%(levelname)s-%(message)s')
#addformattertoch
ch.setFormatter(formatter)
#addchtologger
logger.addHandler(ch)
#'application'code
logger.debug('debugmessage')
logger.info('infomessage')
logger.warn('warnmessage')
logger.error('errormessage')
logger.critical('criticalmessage')
以上就是python配置日志记录的方法,希望能对大家有所帮助,更多Python学习教程请关注IT培训机构:千锋教育。