zoukankan      html  css  js  c++  java
  • 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!
  • 相关阅读:
    close connection error java.sql.SQLRecoverableException: IO Error: Broken pipe
    Mysql 备份与恢复
    MACBOOK 破解wifi密码
    MAC 安装homebrew
    Linux(CentOS / RHEL 7) 防火墙
    ORA-01031: insufficient privileges
    Oracle登录认证
    ORA-12162: TNS:net service name is incorrectly specified
    lsnrctl: .... cannot restore segment prot after reloc: Permission denied
    CentOS / RHEL 配置yum源
  • 原文地址:https://www.cnblogs.com/liunaixu/p/13206606.html
Copyright © 2011-2022 走看看