Python使用logging结合decorator模式实现优化日志输出的方法
更新时间:2016年04月16日 09:40:39 作者:mo_guang
这篇文章主要介绍了Python使用logging结合decorator模式实现优化日志输出的方法,实例分析了Python使用logging模块操作日志的相关技巧,需要的朋友可以参考下
本文实例讲述了Python使用logging结合decorator模式实现优化日志输出的方法。分享给大家供大家参考,具体如下:
python内置的loging模块非常简便易用, 很适合程序运行日志的输出。
而结合python的装饰器模式,则可实现简明实用的代码。测试代码如下所示:
#! /usr/bin/env python2.7 # -*- encoding: utf-8 -*- import logging logging.basicConfig(format='[%(asctime)s] %(message)s', level=logging.INFO) def time_recorder(func): """装饰器, 用在func方法执行前后, 增加运行信息""" def wrapper(): logging.info("Begin to execute function: %s" % func.__name__) func() logging.info("Finish executing function: %s" % func.__name__) return wrapper @time_recorder def first_func(): print "I'm first_function. I'm doing something..." @time_recorder def second_func(): print "I'm second_function. I'm doing something..." if __name__ == "__main__": first_func() second_func()
运行并得到输出:
[2014-04-01 18:02:13,724] Begin to execute function: first_func I'm first_function. I'm doing something... [2014-04-01 18:02:13,725] Finish executing function: first_func [2014-04-01 18:02:13,725] Begin to execute function: second_func I'm second_function. I'm doing something... [2014-04-01 18:02:13,725] Finish executing function: second_func
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。
您可能感兴趣的文章:
- Python内置模块logging用法实例分析
- 详解Python自建logging模块
- Python logging管理不同级别log打印和存储实例
- python使用logging模块发送邮件代码示例
- python logging日志模块的详解
- python中 logging的使用详解
- python中logging库的使用总结
- python中日志logging模块的性能及多进程详解
- 详解使用python的logging模块在stdout输出的两种方法
- 详解Python中logging日志模块在多进程环境下的使用
- python logging 日志轮转文件不删除问题的解决方法
- Python中内置的日志模块logging用法详解
- python中logging包的使用总结
相关文章
Python OpenCV之图片缩放的实现(cv2.resize)
这篇文章主要介绍了Python OpenCV之图片缩放的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2019-06-06Python Scrapy框架:通用爬虫之CrawlSpider用法简单示例
这篇文章主要介绍了Python Scrapy框架:通用爬虫之CrawlSpider用法,结合实例形式分析了Scrapy框架中CrawlSpider的基本使用方法,需要的朋友可以参考下2020-04-04
最新评论