logging模块
Posted finance-it-gao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了logging模块相关的知识,希望对你有一定的参考价值。
一、日志记录的格式与调用方法
1.配置日志打印格式:
logging.basicConfig(level=logging.DEBUG, format=‘%(asctime)s %(filename)s [line:%(lineno)d] %(levelname)s:%(message)s‘, filename=‘test.log‘, filemode=‘a‘) #设置日志基本配置
2.调用方式:
logging.debug(‘debug message‘) #打印debug信息 logging.info(‘info message‘) #打印info信息 logging.warning(‘warning message‘) #打印warning信息 logging.error(‘grammer error‘) #打印error信息 logging.critical(‘critical message‘) #打印critical信息
3.备注:
level=logging.INFO #设置最低信息水平(debug<info<warning<error<critical), #低于该水平的信息无法打印出,一般默认level=warning format=‘%(asctime)s %(filename)s [line:%(lineno)d] %(levelname)s:%(message)s‘, #设置日志打印格式(asctime:日志记录时间;filename:被执行程序所在的文件名; # 若lineno=8,表示是在程序第8行执行了该日志记录程序;) datefmt=‘%a,%d %b %Y %H:%M:%S‘, #设置时间格式 filename=‘test.log‘, #设定日志文件的名字 filemode=‘a‘ #设置文件模式
二、选择在日志文件/操作台显示日志的方法
logger=logging.getLogger() #拿到一个logger对象 fh = logging.FileHandler(‘test.log‘) #创建一个文件写入对象 ch = logging.StreamHandler() #创建一个操作台写入对象 formater = logging.Formatter(‘%(asctime)s %(filename)s [line:%(lineno)d] %(levelname)s:%(message)s‘) #设置打印格式 fh.setFormatter(formater) #fh调用打印格式 ch.setFormatter(formater) #ch调用打印格式 logger.addHandler(fh) #把fh加入到logger对象 logger.addHandler(ch) #把ch加入到logger对象 logger.debug(‘kokokok‘) logger.info(‘56‘)
以上是关于logging模块的主要内容,如果未能解决你的问题,请参考以下文章
如何使用模块化代码片段中的LeakCanary检测内存泄漏?
我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情