Python使用logging结合decorator模式实现优化日志输出的方法
程序员文章站
2022-03-07 17:24:48
...
本文实例讲述了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程序设计有所帮助。
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
上一篇: php魔术方法有哪些
下一篇: php 类的魔术方法有哪些
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论