日誌記錄——logging模塊

Logging:日誌記錄是爲了跟蹤記錄軟件運行時,發生的事件,包括出錯,提示信息等等。
log日誌級別:日誌級別大小關係爲:CRITICAL > ERROR > WARNING > INFO > DEBUG > NOTSET;模塊默認級別爲WARNING,即當且僅當等於或高於WARNING的事件會被記錄下來,其他的忽略不計。html

一、打印到屏幕:

import logging

logging.warn("this logging warn")
logging.info("this is logging info")

屏幕打印爲:面試

WARNING:root:this logging warn

二、打印到指定文件

import logging
LOG_FILENAME="/root/project/log.txt"
logging.basicConfig(filename=LOG_FILENAME,level=logging.INFO)
logging.info("This message should go to the log file")

三、經過logging.basicConfig函數對日誌的輸出格式及方式作相關配置

import logging

# LOG_FILENAME = r"C:\Users\weiming\Desktop\log.txt"
# logging.basicConfig(filename=LOG_FILENAME, level=logging.INFO)
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='logs.log',
                    filemode='w')
logging.debug('debug information')
logging.info('info information')
logging.warn(
'warning information')

logging.basicConfig函數各參數:函數

filename: 指定日誌文件名
filemode: 和file函數意義相同,指定日誌文件的打開模式,’w’或’a’
format: 指定輸出的格式和內容,format能夠輸出不少有用信息,如上例所示:
%(levelno)s: 打印日誌級別的數值
%(levelname)s: 打印日誌級別名稱
%(pathname)s:打印當前執行程序的路徑,其實就是sys.argv[0]
%(filename)s: 打印當前執行程序名
%(funcName)s: 打印日誌的當前函數
%(lineno)d: 打印日誌的當前行號
%(asctime)s: 打印日誌的時間
%(thread)d: 打印線程ID
%(threadName)s: 打印線程名稱
%(process)d: 打印進程ID
%(message)s: 打印日誌信息
datefmt: 指定時間格式,同time.strftime()
level: 設置日誌級別,默認爲logging.WARNING
stream: 指定將日誌的輸出流,能夠指定輸出到sys.stderr,sys.stdout或者文件,默認輸出到sys.stderr,當stream和filename同時指定時,stream被忽略測試

若是對軟件測試、接口測試、自動化測試、面試經驗交流。感興趣能夠加軟件測試交流:1085991341,還會有同行一塊兒技術交流。this

四、將日誌同時輸出到文件和屏幕

import logging

# LOG_FILENAME = r"C:\Users\weiming\Desktop\log.txt"
# logging.basicConfig(filename=LOG_FILENAME, level=logging.INFO)
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='logs.log',
                    filemode='w')

# 定義一個StreamHandler,將INFO級別或更高的日誌信息打印到標準錯誤,並將其添加到當前的日誌處理對象
console = logging.StreamHandler()
console.setLevel(logging.INFO)
formatter = logging.Formatter('%(name)-12s:%(levelname)-8s %(message)s')
console.setFormatter(formatter)
logging.getLogger('').addHandler(console)

logging.debug('debug information')
logging.info('info information')
logging.warn('warning information')

以上內容但願對你有幫助,有被幫助到的朋友歡迎點贊,評論。線程

相關文章
相關標籤/搜索