python学习之 logging包
1,logging包
python的一个包,专门用来写日志的。
官方一共划分了6个等级的log类型,分别对应重要性等级50,40,30,20,10,0:
级别排序:CRITICAL > ERROR > WARNING > INFO > DEBUG >NOTSET
2,logging打印日志到控制台(和print效果差不多)
废话不说,直接看代码:
#!coding=utf-8
import logging logging.basicConfig(level=logging.DEBUG, datefmt='%Y/%m/%d %H:%M:%S',format='%(asctime)s : %(name)s : %(levelname)s : %(message)s')
logger = logging.getLogger("daqing") #把设置读取到实例中才能用哦 logging.debug('this is the debug message')
logging.info('this is the info message')
logging.warning('this is the warning message')
logging.error('this is the error message')
logging.critical('this is the critical message')
#返回的结果:
2019/05/30 13:21:46 : root : DEBUG : this is the debug message
2019/05/30 13:21:46 : root : INFO : this is the info message
2019/05/30 13:21:46 : root : WARNING : this is the warning message
2019/05/30 13:21:46 : root : ERROR : this is the error message
2019/05/30 13:21:46 : root : CRITICAL : this is the critical message
比较重要的是bascConfig函数,它必须在一开始就进行定义,它的几个参数如下
# level用于指定最低等级的logging输出,高于或者等于这个等级自动输出,
# format是指定了字符串格式:包括 asctime、name、levelname、message四个内容(还有别的),分别代表运行时间、模块名称、日志级别、日志内容。
#datefomt是用于格式化时间
#filename指定日志文件的名字,这个例子没有带
#filemode "w"表示清空并且写入,“a"表示追加,一般和上一个参数一块用
#style 用于指定format的占位符,必须在format前定义,只能是%,{或者$
3,打印日志到文档
#!coding=utf-8
import logging logging.basicConfig(level=logging.DEBUG,
filename='output.log',
datefmt='%Y/%m/%d %H:%M:%S',
format='%(asctime)s : %(name)s : %(module)s : %(process)d : %(message)s')
logger = logging.getLogger("daqing") #此处logger和logging还是有区别的,logger写出的日志显示的name一项是daqing,而logging显示的name是root
logger.debug('this is the debug message')
logger.info('this is the info message')
logger.warning('this is the warning message')
logging.error('this is the error message')
logging.critical('this is the critical message')
#定义的format是这样的:%(asctime)s : %(name)s : %(module)s : %(process)d : %(message)s
#返回到output.log中的内容:
2019/05/30 13:23:18 : root : logtest : 4928 : this is the debug message
2019/05/30 13:23:18 : root : logtest : 4928 : this is the info message
2019/05/30 13:23:18 : root : logtest : 4928 : this is the warning message
2019/05/30 13:23:18 : root : logtest : 4928 : this is the error message
2019/05/30 13:23:18 : root : logtest : 4928 : this is the critical message
比较重要的是:format内容(常用):
#%(levelname)s:打印日志级别的名称
#%(pathname)s:打印当前执行程序的路径
#%(funcName)s:打印日志的当前函数
#%(lineno)d:打印日志的当前行号
#%(process)d:打印进程ID
#%(message)s:打印日志信息
#%(module)s:打印模块名称
#%(name)s: 用户名称
4,同时把日志打印到控制台和日志文件中
#!ccoding=utf-8
import logging # 第一步,创建一个logger
logger = logging.getLogger("daqing")
logger.setLevel(logging.DEBUG) # Log等级总开关 # 第二步,创建一个handler,用于写入日志文件,用的是 logging.FileHandler函数,注意它的参数信息
logfile = './logger.txt'
fh = logging.FileHandler(logfile,encoding="utf-8", mode='w') #mode="a"则是追加
fh.setLevel(logging.INFO) # 输出到file的log等级的开关 # 第三步,再创建一个handler,用于输出到控制台
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG) # 输出到console的log等级的开关 # 第四步,定义handler的输出格式,控制台和输出到文件的handler可以共用
formatter = logging.Formatter("%(asctime)s - %(filename)s[line:%(lineno)d] - %(levelname)s: %(message)s")
fh.setFormatter(formatter)
ch.setFormatter(formatter) # 第五步,将logger添加到handler里面,这一步是最重要的,本质上就是为logger添加多个handler
logger.addHandler(fh)
logger.addHandler(ch) # 日志
logger.debug('this is a logger debug message')
logger.info('this is a logger info message')
logger.warning('this is a logger warning message')
logger.error('this is a logger error message')
logger.critical('this is
#控制台返回的结果是这样的:
2019-05-30 13:31:46,235 - logtest.py[line:70] - DEBUG: this is a logger debug message
2019-05-30 13:31:46,236 - logtest.py[line:71] - INFO: this is a logger info message
2019-05-30 13:31:46,236 - logtest.py[line:72] - WARNING: this is a logger warning message
2019-05-30 13:31:46,236 - logtest.py[line:73] - ERROR: this is a logger error message
2019-05-30 13:31:46,236 - logtest.py[line:74] - CRITICAL: this is a logger critical message #logger.txt返回的是这样的:
2019-05-30 13:31:46,236 - logtest.py[line:71] - INFO: this is a logger info message
2019-05-30 13:31:46,236 - logtest.py[line:72] - WARNING: this is a logger warning message
2019-05-30 13:31:46,236 - logtest.py[line:73] - ERROR: this is a logger error message
2019-05-30 13:31:46,236 - logtest.py[line:74] - CRITICAL: this is a logger critical message
#两者虽然共用一个format设置,但是level不同。于是。。。
5,捕获解释器返回的异常信息
#!coding=utf-8
import logging logging.basicConfig(level=logging.DEBUG, datefmt='%Y/%m/%d %H:%M:%S',format='%(asctime)s : %(name)s : %(levelname)s : %(message)s')
logger = logging.getLogger("daqing") #把设置读取到实例中才能用哦 logger.info("start")
try:
a=10/0
except Exception:
logger.error("hehe",exc_info=True) #此处打印完“hehe”日志以后,会把try中报错的信息也打印出来
logger.info("finish")
#返回:
2019/05/30 13:42:32 : daqing : INFO : start
2019/05/30 13:42:32 : daqing : ERROR : hehe
Traceback (most recent call last):
File "D:/python_test/logtest/logtest.py", line 88, in <module>
a=10/0
ZeroDivisionError: division by zero
2019/05/30 13:42:32 : daqing : INFO : finish
6,logger是可以继承的
logging.basicConfig(level=logging.DEBUG, datefmt='%Y/%m/%d %H:%M:%S',format='%(asctime)s : %(name)s : %(levelname)s : %(message)s')
logger = logging.getLogger("daqing") #把设置读取到实例中才能用哦 logger.debug('this is a logger debug message')
logger.info('this is a logger info message')
logger.warning('this is a logger warning message')
logger.error('this is a logger error message')
logger.critical('this is a logger critical message') child_logger=logging.getLogger("daqing.hehe") #此处的child_logger继承了名字叫daqing的logger的属性
child_logger.setLevel(level=logging.WARNING) #继承以后修改了部分属性,把level等级改掉了 child_logger.debug('this is a logger debug message')
child_logger.info('this is a logger info message')
child_logger.warning('this is a logger warning message')
child_logger.error('this is a logger error message')
child_logger.critical('this is a logger critical message')
#返回的logger
2019/05/30 13:50:17 : daqing : DEBUG : this is a logger debug message
2019/05/30 13:50:17 : daqing : INFO : this is a logger info message
2019/05/30 13:50:17 : daqing : WARNING : this is a logger warning message
2019/05/30 13:50:17 : daqing : ERROR : this is a logger error message
2019/05/30 13:50:17 : daqing : CRITICAL : this is a logger critical message
#返回的child_logger
2019/05/30 13:50:17 : daqing.hehe : WARNING : this is a logger warning message
2019/05/30 13:50:17 : daqing.hehe : ERROR : this is a logger error message
2019/05/30 13:50:17 : daqing.hehe : CRITICAL : this is a logger critical message
python学习之 logging包的更多相关文章
- python中利用logging包进行日志记录时的logging.level设置选择
之前在用python自带的logging包进行日志输出的时候发现有些logging语句没有输出,感到比较奇怪就去查了一下logging文档.然后发现其在设置和引用时的logging level会影响最 ...
- python学习——模块和包
在之前常用模块中我们已经初步了解了模块的导入,今天来说学习一下模块和包.我们可以把模块理解成每一个python文件.而包就是多个能解决一类问题的python文件全部放在一起.OK
- python学习之logging
学习地址:http://blog.csdn.net/zyz511919766/article/details/25136485 首先如果我们想简要的打印出日志,可以: import logging l ...
- python 学习笔记 -logging模块(日志)
模块级函数 logging.getLogger([name]):返回一个logger对象,如果没有指定名字将返回root loggerlogging.debug().logging.info().lo ...
- python学习日记(包——package)
简述——包 包是一种通过使用‘.模块名’来组织python模块名称空间的方式. 注意: 1. 无论是import形式还是from...import形式,凡是在导入语句中(而不是在使用时)遇到带点的,都 ...
- python学习之模块&包的引用
名词解释: 模块:一个程序文件 包:相当于一个类库,打包发布后相当于c#中的dll, 包中可包括若干个模块,比如main.py就是一个模块,对于test2文件下的所有模块组成一个包 对于一个包而言,注 ...
- python学习-模块与包(九)
9.4查看模块内容 dir(): 返回模块或类所包含的全部程序单元(包括变量.函数.类和方法等) __all__:模块本身提供的变量,不会展示以下划线开头的程序单元.另使用from xx import ...
- python学习笔记013——包package
1 包(模块包)package 1.1 包的定义 包是将模块以文件夹的组织形式进行分组管理的方法 1.2 作用 分类管理,有利于防止命名冲突 可以在需要时加载一个或部分模块,而不是全部模块 mypac ...
- python学习之logging模块
Logger.setLevel(level) 设置记录器的级别为level.低于该级别的信息将被忽略. 记录器默认级别为NOTSET.如果记录器是根记录器,则默认将记录所有信息: 如果是一个非根记录器 ...
随机推荐
- C语言 小技巧函数方法总结
1.使用^(异或) 不引入第三变量交换两个变量的值. /* 交换 int a 和 int b 的值*/ #include <stdio.h> int main(int argc, char ...
- ZedGraph怎样在双击图形后添加箭头标记
场景 在ZedGraph的曲线图上,双击图时会在图形上生成箭头符号标记. 效果 注: 博客主页: https://blog.csdn.net/badao_liumang_qizhi 关注公众号 霸道的 ...
- [转]TCP/IP 协议基础(一)
参考书籍为<图解tcp/ip>-第五版.这篇随笔,主要内容还是TCP/IP所必备的基础知识,包括计算机与网络发展的历史及标准化过程(简述).OSI参考模型.网络概念的本质.网络构建的设备等 ...
- harbor仓库部署时启用https时的常见错误KeyError: 'certificate'等
出现 KeyError: 'certificate' 错误 先确认你的配置是否正确,例如harbor.yml里的https证书位置是否正确,证书是否正常无误 如果上述无误确反复报错,请确认你的harb ...
- 2018ICPC南京站Problem G. Pyramid
题意: 找有多少个等边三角形 解析: 首先打标找规律,然后对式子求差分 0,1,5,15,35,70,126,210... 1,4,10,20,35,56... 3,6,10,15,21... 3,4 ...
- 在SQL中怎么把一列字符串拆分为多列
--首先,你是按什么规则拆? 我举个例子 你要按字段中的逗号拆开,假设字段名叫text --用charindex和substring这2个函数 select substring(text,1,c ...
- 解决jquery click事件执行两次
js 解决办法 event.preventDefault() :阻止默认行为,可以用 event.isDefaultPrevented() 来确定preventDefault是否被调用过了 event ...
- C++——指针3
指针作为函数参量 指针作为函数参量,以地址的方式传递数据,可以用来返回函数处理结果:实参是数组名时形参可以是指针. 题目:读入三个浮点数,将整数部分和小数部分分别输出 #include <ios ...
- Python 查看函数属于哪个模块
help(函数名)出现的信息里包含了所在模块
- AcWing 12. 背包问题求具体方案
//f[i][j]=max(f[i-1][j],f[i-1][j-v[i]]+w[i]) #include <iostream> using namespace std; ; int n, ...