Python實現(xiàn)監(jiān)控程序執(zhí)行時間并將其寫入日志的方法
更新時間:2015年06月30日 17:45:58 作者:mingaixin
這篇文章主要介紹了Python實現(xiàn)監(jiān)控程序執(zhí)行時間并將其寫入日志的方法,實例分析了Python日志操作的相關(guān)技巧,需要的朋友可以參考下
本文實例講述了Python實現(xiàn)監(jiān)控程序執(zhí)行時間并將其寫入日志的方法。分享給大家供大家參考。具體實現(xiàn)方法如下:
# /usr/bin/python # -*- coding:utf-8 -*- from time import time def logged(when): def log(f,*args,**kargs): print ''' called: functions:%s args: %r kargs: %r ''' % (f,args,kargs) def pre_logged(f): def wrapper(*args,**kargs): log(f,*args,**kargs) return f(*args,**kargs) return wrapper def post_logged(f): def wrapper(*args,**kargs): now = time() try: return f(*args,**kargs) finally: log(f,*args,**kargs) print "time delta:%s" % (time()-now) return wrapper try: return {"pre":pre_logged,"post":post_logged}[when] except KeyError,e: raise ValueError(e),'must be "pre" or "post"' @logged("post") def hello(name): print "hello,",name hello("world!") ''' 等同于: hello = logged("post")(hello("world!")) '''
希望本文所述對大家的Python程序設(shè)計有所幫助。
相關(guān)文章
pygame學(xué)習筆記(2):畫點的三種方法和動畫實例
這篇文章主要介紹了pygame學(xué)習筆記(2):畫點的三種方法和動畫實例,本文講解了單個像素(畫點)、連接多個點形成線、引用圖像、動畫完整實例,需要的朋友可以參考下2015-04-04利用python實現(xiàn)后端寫網(wǎng)頁(flask框架)
這篇文章主要給大家介紹了關(guān)于如何利用python實現(xiàn)后端寫網(wǎng)頁(flask框架)的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習或者工作具有一定的參考學(xué)習價值,需要的朋友們下面隨著小編來一起學(xué)習學(xué)習吧2021-02-02Python實現(xiàn)讀取Excel文件并復(fù)制指定的數(shù)據(jù)行
這篇文章主要介紹了如何基于Python語言,讀取Excel表格文件數(shù)據(jù),并基于其中某一列數(shù)據(jù)的值,將這一數(shù)據(jù)處于指定范圍的那一行加以復(fù)制,感興趣的可以了解一下2023-07-07卸載tensorflow-cpu重裝tensorflow-gpu操作
這篇文章主要介紹了卸載tensorflow-cpu重裝tensorflow-gpu操作,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-06-06python一行sql太長折成多行并且有多個參數(shù)的方法
今天小編就為大家分享一篇python一行sql太長折成多行并且有多個參數(shù)的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-07-07