日誌模塊ide
爲何要寫日誌函數
一個卡務系統 : 記錄時間 地點 金額編碼
誰在何時 刪掉了某一個用戶spa
某時某刻登陸了系統線程
檢測代碼是否是像咱們想像的這樣執行的debug
寫文件 ,輸出到屏幕調試
f.write,print日誌
時間格式,級別控制,更加便捷code
*** logging模塊不能自動生成你須要的日誌orm
logging模塊的使用
簡單配置法 *** 編碼問題
logger對象法 *****
簡單配置:
# 默認狀況下 不打印warning如下級別的信息
默認的日誌格式爲日誌級別:Logger名稱:用戶輸出消息。
import logging logging.debug('debug message') # 調試 logging.info('info message') # 普通訊息 logging.warning('warning message') # 警告 logging.error('error message') # 錯誤信息 logging.critical('critical message')# 嚴重錯誤
#WARNING:root:warning message
#ERROR:root:error message
#CRITICAL:root:critical message
import logging logging.basicConfig(level=logging.DEBUG) logging.debug('debug message') # 調試 logging.info('info message') # 普通訊息 logging.warning('warning message') # 警告 logging.error('error message') # 錯誤信息 logging.critical('critical message')# 嚴重錯誤 #DEBUG:root:debug message #INFO:root:info message #WARNING:root:warning message #ERROR:root:error message #CRITICAL:root:critical message
import logging logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s', datefmt='%a, %d %b %Y %H:%M:%S') logging.debug('debug message') # 調試 logging.info('info message') # 普通訊息 logging.warning('warning message') # 警告 logging.error('error message') # 錯誤信息 logging.critical('critical message')# 嚴重錯誤 #Thu, 04 Apr 2019 18:33:01 7.logging模塊.py[line:23] DEBUG debug message #Thu, 04 Apr 2019 18:33:01 7.logging模塊.py[line:24] INFO info message #Thu, 04 Apr 2019 18:33:01 7.logging模塊.py[line:25] WARNING warning message #Thu, 04 Apr 2019 18:33:01 7.logging模塊.py[line:26] ERROR error message #Thu, 04 Apr 2019 18:33:01 7.logging模塊.py[line:27] CRITICAL critical message
logging庫提供了多個組件:Logger、Handler、Filter、Formatter。Logger對象提供應用程序可直接使用的接口,Handler發送日誌到適當的目的地,Filter提供了過濾日誌信息的方法,Formatter指定日誌顯示格式。另外,能夠經過:logger.setLevel(logging.Debug)設置級別,固然,也能夠經過
fh.setLevel(logging.Debug)單對文件流設置某個級別。
# logger對象的方式來使用logging模塊 # 首先 先建立logger對象 # 第二 建立一個文件操做符 # 第三 建立一個屏幕操做符 # 第四 建立一個格式 # logger 綁定 文件操做符 # logger 綁定 屏幕操做符 # 文件操做符 綁定格式 # 屏幕操做符 綁定格式 import logging # 用logger # 首先 先建立logger對象 logger = logging.getLogger() logger.setLevel(logging.DEBUG) # 第二 建立一個文件操做符 fh = logging.FileHandler('log',encoding='utf-8') # 第三 建立一個屏幕操做符 sh = logging.StreamHandler() # 第四 建立一個格式 fmt = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') # logger 綁定 文件操做符 logger.addHandler(fh) # logger 綁定 屏幕操做符 logger.addHandler(sh) # 文件操做符 綁定格式 fh.setFormatter(fmt) # 屏幕操做符 綁定格式 sh.setFormatter(fmt) logger.debug('logger debug message') logger.info('logger info message') logger.warning('logger warning message') logger.error('logger error message') logger.critical('logger critical message') #2019-04-04 18:34:12,587 - root - DEBUG - logger debug message #2019-04-04 18:34:12,587 - root - INFO - logger info message #2019-04-04 18:34:12,587 - root - WARNING - logger warning message #2019-04-04 18:34:12,587 - root - ERROR - logger error message #2019-04-04 18:34:12,587 - root - CRITICAL - logger critical message
logging.basicConfig()函數中可經過具體參數來更改logging模塊默認行爲,可用參數有: filename:用指定的文件名建立FiledHandler,這樣日誌會被存儲在指定的文件中。 filemode:文件打開方式,在指定了filename時使用這個參數,默認值爲「a」還可指定爲「w」。 format:指定handler使用的日誌顯示格式。 datefmt:指定日期時間格式。 level:設置rootlogger(後邊會講解具體概念)的日誌級別 stream:用指定的stream建立StreamHandler。能夠指定輸出到sys.stderr,sys.stdout或者文件(f=open(‘test.log’,’w’)),默認爲sys.stderr。若同時列出了filename和stream兩個參數,則stream參數會被忽略。 format參數中可能用到的格式化串: %(name)s Logger的名字 %(levelno)s 數字形式的日誌級別 %(levelname)s 文本形式的日誌級別 %(pathname)s 調用日誌輸出函數的模塊的完整路徑名,可能沒有 %(filename)s 調用日誌輸出函數的模塊的文件名 %(module)s 調用日誌輸出函數的模塊名 %(funcName)s 調用日誌輸出函數的函數名 %(lineno)d 調用日誌輸出函數的語句所在的代碼行 %(created)f 當前時間,用UNIX標準的表示時間的浮 點數表示 %(relativeCreated)d 輸出日誌信息時的,自Logger建立以 來的毫秒數 %(asctime)s 字符串形式的當前時間。默認格式是 「2003-07-08 16:49:45,896」。逗號後面的是毫秒 %(thread)d 線程ID。可能沒有 %(threadName)s 線程名。可能沒有 %(process)d 進程ID。可能沒有 %(message)s用戶輸出的消息