您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)python中打印日志的方法,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
默認(rèn)情況下,python使用logging模塊將日志打印到屏幕上(stdout),日志級(jí)別為WARNING(即只有日志級(jí)別高于WARNING的日志信息才會(huì)輸出),日志格式如下圖所示:
簡(jiǎn)單使用
#!/usr/local/bin/python# -*- coding:utf-8 -*-import logging logging.debug('debug message') logging.info('info message') logging.warn('warn message') logging.error('error message') logging.critical('critical message')
輸出
WARNING:root:warn message ERROR:root:error message CRITICAL:root:critical message
通過(guò)logging.basicConfig函數(shù)對(duì)日志的輸出格式及方式做相關(guān)配置。logging.basicConfig(**kwargs) 該函數(shù)必須在main函數(shù)線程除外的子線程啟動(dòng)之前調(diào)用,否則可能會(huì)造成日志重復(fù)記錄
import logging fmt = '%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s: %(message)s' logging.basicConfig(level=logging.DEBUG, format=fmt, filename='D:\Python\logs.txt', filemode='w', datefmt='%a, %d %b %Y %H:%M:%S' ) logging.debug('this is a debug level message') logging.info("this is a info level message") logging.warning("this is a warning level message") logging.error("this is a error level message") logging.critical("this is a critical level message")
filename:創(chuàng)建一個(gè)FileHandler,使用指定的文件名,而不是使用StreamHandler。
filemode:如果指明了文件名,指明打開(kāi)文件的模式(如果沒(méi)有指明filemode,默認(rèn)為'a')。
format:handler使用指明的格式化字符串。
datefmt:使用指明的日期/時(shí)間格式。
關(guān)于python中打印日志的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。