python logging模塊

logging模塊

簡介

logging模塊是python內置模塊,專門爲打印日誌的模塊python

import logging
logging.debug('debug message')
logging.info('info message')
logging.warning('warning message')
logging.error('error message')
logging.critical('critical message')

默認狀況下python的logging模塊將日誌打印到標準輸出中,且只顯示了大於等於WARNING的日誌,這說明默認的日誌級別爲WARNING(日誌級別等級CRITICAL > ERROR > WARN > INFO > DEBUG),默認的日誌格式日誌級別:Logger名稱:用戶輸出消息app

靈活配置日誌級別,日誌格式,輸出位置

import logging
fh = logging.FileHandler(filename='xxx.log',encoding='utf-8') # 存放日誌的文件
fh1 = logging.FileHandler(filename='xxx2.log',encoding='utf-8')
sh = logging.StreamHandler()  # 屏幕打印日誌
logging.basicConfig(level=logging.INFO, # 日誌的級別
                    handlers=[fh,sh,fh1], 
                    datefmt='%Y-%m-%d %H:%M:%S', # 時間
                    format='%(asctime)s - %(name)s[%(lineno)d] - % (levelname)s -%(module)s:  %(message)s') # 格式化格式輸出
logging.debug('debug message')      # 狀況越輕
logging.info('info message')        # 信息類的日誌
logging.warning('warning message')
logging.error('error message')
logging.critical('critical message')

日誌切割

import time
import logging
from logging import handlers

sh = logging.StreamHandler()
# 按文件大寫進行切割,只保留5個文件
rh = handlers.RotatingFileHandler('myapp.log', maxBytes=1024,backupCount=5)
# 按時間進行切割 
fh = handlers.TimedRotatingFileHandler(filename='x2.log', when='s', interval=5, encoding='utf-8')
logging.basicConfig(
    format='%(asctime)s - %(name)s - %(levelname)s -%(module)s:  %(message)s',
    datefmt='%Y-%m-%d %H:%M:%S %p',
    handlers=[fh,sh,rh],
    level=logging.ERROR
)

for i in range(1,100000):
    time.sleep(1)
    logging.error('KeyboardInterrupt error %s'%str(i))

配置參數:

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 #用戶輸出的消息

logger對象配置

import logging

logger = logging.getLogger()
# 建立一個handler,用於寫入日誌文件
fh = logging.FileHandler('test.log',encoding='utf-8') 

# 再建立一個handler,用於輸出到控制檯 
ch = logging.StreamHandler() 
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
fh.setLevel(logging.DEBUG)

fh.setFormatter(formatter) 
ch.setFormatter(formatter) 
logger.addHandler(fh) #logger對象能夠添加多個fh和ch對象 
logger.addHandler(ch) 

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')

logging庫提供了多個組件:Logger、Handler、Filter、Formatter。Logger對象提供應用程序可直接使用的接口,Handler發送日誌到適當的目的地,Filter提供了過濾日誌信息的方法,Formatter指定日誌顯示格式。另外,能夠經過:logger.setLevel(logging.Debug)設置級別,固然,也能夠經過函數

fh.setLevel(logging.Debug)單對文件流設置某個級別。spa

相關文章
相關標籤/搜索