Python常用模块之logging模块
函數(shù)式簡(jiǎn)單配置:
import logging logging.debug('debug message') logging.info('info message') logging.warning('warning message') logging.error('error message') logging.critical('critical message')默認(rèn)情況下Python的logging模塊將日志打印到了標(biāo)準(zhǔn)輸出中,且只顯示了大于等于WARNING級(jí)別的日志
這說(shuō)明默認(rèn)的日志級(jí)別設(shè)置為WARNING(日志級(jí)別等級(jí)CRITICAL > ERROR > WARNING > INFO > DEBUG)
默認(rèn)的日志格式為日志級(jí)別:Logger名稱:用戶輸出消息。
靈活配置日志級(jí)別,日志格式,輸出位置:
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', filename='/tmp/test.log', filemode='w') logging.debug('debug message') logging.info('info message') logging.warning('warning message') logging.error('error message') logging.critical('critical message')配置參數(shù):
logging.basicConfig()函數(shù)中可通過(guò)具體參數(shù)來(lái)更改logging模塊默認(rèn)行為,可用參數(shù)有:filename:用指定的文件名創(chuàng)建FiledHandler,這樣日志會(huì)被存儲(chǔ)在指定的文件中。 filemode:文件打開(kāi)方式,在指定了filename時(shí)使用這個(gè)參數(shù),默認(rèn)值為“a”還可指定為“w”。 format:指定handler使用的日志顯示格式。 datefmt:指定日期時(shí)間格式。 level:設(shè)置rootlogger(后邊會(huì)講解具體概念)的日志級(jí)別 stream:用指定的stream創(chuàng)建StreamHandler。可以指定輸出到sys.stderr,sys.stdout或者文件(f=open(‘test.log’,’w’)),默認(rèn)為sys.stderr。若同時(shí)列出了filename和stream兩個(gè)參數(shù),則stream參數(shù)會(huì)被忽略。format參數(shù)中可能用到的格式化串: %(name)s Logger的名字 %(levelno)s 數(shù)字形式的日志級(jí)別 %(levelname)s 文本形式的日志級(jí)別 %(pathname)s 調(diào)用日志輸出函數(shù)的模塊的完整路徑名,可能沒(méi)有 %(filename)s 調(diào)用日志輸出函數(shù)的模塊的文件名 %(module)s 調(diào)用日志輸出函數(shù)的模塊名 %(funcName)s 調(diào)用日志輸出函數(shù)的函數(shù)名 %(lineno)d 調(diào)用日志輸出函數(shù)的語(yǔ)句所在的代碼行 %(created)f 當(dāng)前時(shí)間,用UNIX標(biāo)準(zhǔn)的表示時(shí)間的浮 點(diǎn)數(shù)表示 %(relativeCreated)d 輸出日志信息時(shí)的,自Logger創(chuàng)建以 來(lái)的毫秒數(shù) %(asctime)s 字符串形式的當(dāng)前時(shí)間。默認(rèn)格式是 “2003-07-08 16:49:45,896”。逗號(hào)后面的是毫秒 %(thread)d 線程ID。可能沒(méi)有 %(threadName)s 線程名。可能沒(méi)有 %(process)d 進(jìn)程ID。可能沒(méi)有 %(message)s用戶輸出的消息logger對(duì)象配置:
''' 學(xué)習(xí)中遇到問(wèn)題沒(méi)人解答?小編創(chuàng)建了一個(gè)Python學(xué)習(xí)交流QQ群:725638078 尋找有志同道合的小伙伴,互幫互助,群里還有不錯(cuò)的視頻學(xué)習(xí)教程和PDF電子書(shū)! ''' import logginglogger = logging.getLogger() # 創(chuàng)建一個(gè)handler,用于寫入日志文件 fh = logging.FileHandler('test.log')# 再創(chuàng)建一個(gè)handler,用于輸出到控制臺(tái) ch = logging.StreamHandler()formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')fh.setFormatter(formatter) ch.setFormatter(formatter)logger.addHandler(fh) #logger對(duì)象可以添加多個(gè)fh和ch對(duì)象 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庫(kù)提供了多個(gè)組件:Logger、Handler、Filter、Formatter。
-
Logger對(duì)象提供應(yīng)用程序可直接使用的接口
-
Handler發(fā)送日志到適當(dāng)?shù)哪康牡?/p>
-
Filter提供了過(guò)濾日志信息的方法
-
Formatter指定日志顯示格式
另外,可以通過(guò):logger.setLevel(logging.Debug)設(shè)置級(jí)別。當(dāng)然,也可以通過(guò)fh.setLevel(logging.Debug)單對(duì)文件流設(shè)置某個(gè)級(jí)別。
結(jié)尾給大家推薦一個(gè)非常好的學(xué)習(xí)教程,希望對(duì)你學(xué)習(xí)Python有幫助!
Python基礎(chǔ)入門教程推薦:更多Python視頻教程-關(guān)注B站:Python學(xué)習(xí)者
https://www.bilibili.com/video/BV1LL4y1h7ny?share_source=copy_web
Python爬蟲(chóng)案例教程推薦:更多Python視頻教程-關(guān)注B站:Python學(xué)習(xí)者
https://www.bilibili.com/video/BV1QZ4y1N7YA?share_source=copy_web
總結(jié)
以上是生活随笔為你收集整理的Python常用模块之logging模块的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Python常用模块之re模块
- 下一篇: Python常用模块之序列化模块