這篇文章主要介紹python如何實(shí)現(xiàn)log日志,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、重慶小程序開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了漢臺(tái)免費(fèi)建站歡迎大家使用!源代碼:
# coding=utf-8 import logging import os import time LEVELS={'debug':logging.DEBUG,\ 'info':logging.INFO,\ 'warning':logging.WARNING,\ 'error':logging.ERROR,\ 'critical':logging.CRITICAL,} logger=logging.getLogger() level='default' def createFile(filename): path=filename[0:filename.rfind('/')] if not os.path.isdir(path): os.makedirs(path) if not os.path.isfile(filename): #創(chuàng)建并打開(kāi)一個(gè)新文件 fd = open(filename,mode='w',encoding='utf-8') fd.close() class MyLog: log_filename='E:/quality/it/pyrequest-master/log/itest.log' err_filename='E:/quality/it/pyrequest-master/log/err.log' dateformat='%Y-%m-%d %H:%M:%S' logger.setLevel(LEVELS.get(level,logging.NOTSET)) createFile(log_filename) createFile(err_filename) #注意文件內(nèi)容寫(xiě)入時(shí)編碼格式指定 handler=logging.FileHandler(log_filename,encoding='utf-8') errhandler=logging.FileHandler(err_filename,encoding='utf-8') @staticmethod #靜態(tài)方法 def debug(log_message): setHandler('debug') logger.debug("[DEBUG "+getCurrentTime()+"]"+log_message) removerhandler('debug') @staticmethod def info(log_message): setHandler('info') logger.info("[INFO "+getCurrentTime()+"]"+log_message) removerhandler('info') @staticmethod def warning(log_message): setHandler('warning') logger.warning("[WARNING "+getCurrentTime()+"]"+log_message) removerhandler('warning') @staticmethod def error(log_message): setHandler('error') logger.error("[ERROR "+getCurrentTime()+"]"+log_message) removerhandler('error') @staticmethod def critical(log_message): setHandler('critical') logger.critical("[CRITICAL "+getCurrentTime()+"]"+log_message) removerhandler('critical') # logger可以看做是一個(gè)記錄日志的人,對(duì)于記錄的每個(gè)日志,他需要有一套規(guī)則,比如記錄的格式(formatter), # 等級(jí)(level)等等,這個(gè)規(guī)則就是handler。使用logger.addHandler(handler)添加多個(gè)規(guī)則, # 就可以讓一個(gè)logger記錄多個(gè)日志。 def setHandler(level): if level=='error': logger.addHandler(MyLog.errhandler) #handler=logging.FileHandler(log_filename) #把logger添加上handler logger.addHandler(MyLog.handler) def removerhandler(level): if level=='error': logger.removeHandler(MyLog.errhandler) logger.removeHandler(MyLog.handler) def getCurrentTime(): return time.strftime(MyLog.dateformat,time.localtime(time.time())) if __name__=="__main__": MyLog.debug("This is debug message") MyLog.info("This is info message") MyLog.warning("This is warning message") MyLog.error("This is error message") MyLog.critical("This is critical message")
以上是“python如何實(shí)現(xiàn)log日志”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
本文名稱:python如何實(shí)現(xiàn)log日志-創(chuàng)新互聯(lián)
標(biāo)題URL:http://muchs.cn/article20/depejo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)、標(biāo)簽優(yōu)化、響應(yīng)式網(wǎng)站、微信小程序、定制開(kāi)發(fā)、搜索引擎優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容