Python的logging日志

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python的logging日志相关的知识,希望对你有一定的参考价值。

日志级别:
critical > error > warning > info > debug,notset
级别越高打印的日志越少,反之亦然,即
debug : 打印全部的日志(notset等同于debug)
info : 打印info,warning,error,critical级别的日志
warning : 打印warning,error,critical级别的日志
error : 打印error,critical级别的日志
critical : 打印critical级别

 

参考文章:http://www.cnblogs.com/zhbzz2007/p/5943685.html








以上是关于Python的logging日志的主要内容,如果未能解决你的问题,请参考以下文章

Python之日志处理(logging模块)

python中的日志模块logging

Python日志输出——logging模块

python的logging日志模块

python---Logging日志模块

Python中logging日志使用