pythonlogging模块

Posted skyer442

tags:

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

一、简单的将日志打印到屏幕

>>> import logging
>>> logging.debug("This is debug message")
>>> logging.info("This is info message")
>>> logging.warning("This is warning message")
WARNING:root:This is warning message
>>> logging.error("This is error message")
ERROR:root:This is error message
>>> logging.critical("This is critical message")
CRITICAL:root:This is critical message

日志级别大小关系为:CRITICAL > ERROR > WARNING > INFO > DEBUG > NOTSET,当然也可以自己定义日志级别。

以上是关于pythonlogging模块的主要内容,如果未能解决你的问题,请参考以下文章

Python Logging - 禁用导入模块的日志记录

python中的logging

Python入门之logging日志模块以及多进程日志

python logging模块使用

python logging模块使用

Python Logging模块