python中的日志级别

Posted 旧时光清风

tags:

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

python中的日志级别

Python按照重要程度把日志分为5个级别,如下:

可以通过level参数,设置不同的日志级别。当设置为高的日志级别时,低于此级别的日志不再打印。

五种日志级别按从低到高排序:

DEBUG < INFO < WARNING < ERROR < CRITICAL

  1. level设置为DEBUG级别,所有的日志都会打印

import logging
logging.basicConfig(level=logging.DEBUG, format=\' %(asctime)s - %(levelname)s -%(message)s\')
logging.debug(\'Some debugging details.\')
logging.info(\'The logging module is working\')
logging.warning(\'An error message is about to be logged.\')
logging.error(\'An error has occurred.\')
logging.critical(\'The program is unable to recover!\')
 2019-11-17 15:24:30,065 - DEBUG -Some debugging details.
 2019-11-17 15:24:30,074 - INFO -The logging module is working
 2019-11-17 15:24:30,086 - WARNING -An error message is about to be logged.
 2019-11-17 15:24:30,105 - ERROR -An error has occurred.
 2019-11-17 15:24:30,107 - CRITICAL -The program is unable to recover!

  1. level设置为ERROR级别时,只显示ERROR和CRITICAL日志

import logging
logging.basicConfig(level=logging.ERROR, format=\' %(asctime)s - %(levelname)s -%(message)s\')
logging.debug(\'Some debugging details.\')
logging.info(\'The logging module is working\')
logging.warning(\'An error message is about to be logged.\')
logging.error(\'An error has occurred.\')
logging.critical(\'The program is unable to recover!\')
 2019-11-17 15:30:46,767 - ERROR -An error has occurred.
 2019-11-17 15:30:46,768 - CRITICAL -The program is unable to recover!

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

常用python日期日志获取内容循环的代码片段

如何将python日志记录级别名称转换为整数代码

在标准输出上显示 INFO 级别的 python 日志而不更改源代码

python logger日志通用配置文件

使用 rsyslog 的 Python 日志记录级别

在 Python3 中根据消息日志级别修改日志消息格式