python2.7中logging的使用方式(Python中使用logging和traceback模块记录日志和跟踪异常)
类别:脚本大全 浏览量:2107
时间:2021-10-21 07:02:49 python2.7中logging的使用方式
Python中使用logging和traceback模块记录日志和跟踪异常logging模块
logging模块用于输出运行日志,可以设置不同的日志等级,保存信息到日志文件中等。 相比print,logging可以设置日志的等级,控制在发布版本中的输出内容,并且可以指定日志的输出格式。
1. 使用logging在终端输出日志
|
#!/usr/bin/env python # -*- coding:utf-8 -*- import logging # 引入logging模块 # 设置打印日志级别 critical > error > warning > info > debug logging.basicconfig(level = logging.debug, format = ' % (asctime)s - % (name)s - % (filename)s[line: % (lineno)d] - % (levelname)s - % (message)s') # 将信息打印到控制台上 logging.debug(u "调试" ) logging.info(u "执行打印功能" ) logging.warning(u "警告" ) logging.error(u "错误" ) logging.critical(u "致命错误" ) |
输出
2. 使用logging在終端輸出日志,並保存日志到本地log文件
|
#!/usr/bin/env python # -*- coding:utf-8 -*- import logging # 引入logging模块 import os.path # 第一步,创建一个logger logger = logging.getlogger() logger.setlevel(logging.debug) # log等级开关 # 第二步,创建一个handler,用于写入日志文件 log_path = os.path.dirname(os.getcwd()) + '/logs/' log_name = log_path + 'log.log' logfile = log_name file_handler = logging.filehandler(logfile, mode = 'a+' ) file_handler.setlevel(logging.error) # 输出到file的log等级的开关 # 第三步,定义handler的输出格式 formatter = logging.formatter( "%(asctime)s - %(filename)s[line:%(lineno)d] - %(levelname)s: %(message)s" ) file_handler.setformatter(formatter) # 第四步,将handler添加到logger里面 logger.addhandler(file_handler) # 如果需要同時需要在終端上輸出,定義一個streamhandler print_handler = logging.streamhandler() # 往屏幕上输出 print_handler.setformatter(formatter) # 设置屏幕上显示的格式 logger.addhandler(print_handler) # 日志信息 logger.debug( 'this is a logger debug message' ) logger.info( 'this is a logger info message' ) logger.warning( 'this is a logger warning message' ) logger.error( 'this is a logger error message' ) logger.critical( 'this is a logger critical message' ) # 或使用logging logging.debug( 'this is a logger debug message' ) logging.info( 'this is a logger info message' ) logging.warning( 'this is a logger warning message' ) logging.error( 'this is a logger error message' ) logging.critical( 'this is a logger critical message' ) |
日志等级划分
- fatal:致命错误
- critical:特别糟糕的事情,如内存耗尽、磁盘空间为空,一般很少使用
- error:发生错误时,如io操作失败或者连接问题
- warning:发生很重要的事件,但是并不是错误时,如用户登录密码错误
- info:处理请求或者状态变化等日常事务
- debug:调试过程中使用debug等级,如算法中每个循环的中间状态
traceback模块
traceback是python中用来跟踪异常信息的模块,方便把程序中的运行异常打印或者保存下来做异常分析。
常见用法
|
try : dosomething() except : traceback.print_exc() # logging.error(str(traceback.format_exc())) |
traceback.format_exc() 与 traceback.print_exc() 区别:
- traceback.format_exc() 返回异常信息的字符串,可以用来把信息记录到log里;
- traceback.print_exc() 直接把异常信息在终端打印出来;
traceback.print_exc()
也可以实现把异常信息写入文件,使用方法:
|
traceback.print_exc( file = open ( 'traceback_info.txt' , 'w+' )) |
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对开心学习网的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/dcrmg/article/details/88800685
您可能感兴趣
- python中if语句应学会什么(Python基础之条件控制操作示例if语句)
- python3标准库资源(Python3标准库总结)
- python使用教程操作(详解python中@的用法)
- python3.8爬虫需要的包(python爬取基于m3u8协议的ts文件并合并)
- python里list操作大全(Python列表List知识点总结)
- python判断对象是否是某一类型(Python判断对象是否相等及eq函数的讲解)
- python数据分析pandas教程(11个Python Pandas小技巧让你的工作更高效附代码实例)
- 列表重复数据怎么删除python(Python实现的删除重复文件或图片功能示例去重)
- pythonpandas数据类型(Python3.5 Pandas模块之Series用法实例分析)
- python菜单栏中常用的菜单(Python3实现的简单三级菜单功能示例)
- python的decode函数在哪个模块(python中报错"json.decoder.JSONDecodeError: Expecting value:"的解决)
- python装饰器语法与应用(python装饰器简介---这一篇也许就够了推荐)
- linux切换python版本(linux安装python修改默认python版本方法)
- python3安装编程环境(Python3 修改默认环境的方法)
- python udp网络编程(python实现一个简单的udp通信的示例代码)
- python学生管理系统与数据库(python学生管理系统学习笔记)
- 融入小人物的喜怒哀乐,黄渤饰演的角色为什么让人观看时欲罢不能(融入小人物的喜怒哀乐)
- 《极限挑战》深访都市夜归人,夜间打工者体验,黄磊录完憔悴了(极限挑战深访都市夜归人)
- Google 推出了一个游戏生成器,让不会编程的你也能自己设计游戏(推出了一个游戏生成器)
- 二胎家庭老大爱闹情绪,用这招很有效(二胎家庭老大爱闹情绪)
- 一个30岁男人外遇失败的全过程(一个30岁男人外遇失败的全过程)
- 《无敌破坏王2》 不聊彩蛋,聊聊我从动画里看到的现实那些事儿(无敌破坏王2不聊彩蛋)
热门推荐
- 使用canvas的好坏(关于canvas绘制模糊问题的解决方法)
- python使用django搭建简单网页(Python后台开发Django的教程详解启动)
- 搭建php和mysql的运行环境(Windows环境开发PHP完整配置教程Apache+Mysql+PHP)
- apachessl证书怎么获取(Apache SSL服务器配置SSL详解)
- virtualbox 虚拟centos使用方法(Virtualbox 安装centos7虚拟机的图文教程详解)
- Html5新增的标签
- docker部署mysql如何访问(完美解决docker安装mysql后Navicat连接不上的问题)
- mysql连接查询原理(MySQL连接查询你真的学会了吗?)
- pythonselenium接口自动测试(python3+selenium自动化测试框架详解)
- docker中的centos镜像为何很小(CentOS 7.x docker使用overlay2存储方式)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9