python的日志

2021/7/5 14:37:56

本文主要是介绍python的日志,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

python的日志

文章目录

  • python的日志
        • 日志的作用
        • 日志的等级
        • logging模块的使用

日志的作用

  • 日记
  • 程序行为
  • 重要信息记录

日志的等级

  • debug
  • info
  • warning
  • error
  • critical

logging模块的使用

在这里插入图片描述

format参数的具体格式
在这里插入图片描述

#coding :utf-8
import logging

logging.basicConfig(
    level=logging.INFO,
    format='%(asctime)s %(filename)s %(lineno)d %(levelname)s %(message)s',
    filename='back.log',
    filemode='w'
)
logging.info('这是第一个日志信息')


这篇关于python的日志的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程