您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關python中打印日志的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
默認情況下,python使用logging模塊將日志打印到屏幕上(stdout),日志級別為WARNING(即只有日志級別高于WARNING的日志信息才會輸出),日志格式如下圖所示:
簡單使用
#!/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
通過logging.basicConfig函數對日志的輸出格式及方式做相關配置。logging.basicConfig(**kwargs) 該函數必須在main函數線程除外的子線程啟動之前調用,否則可能會造成日志重復記錄
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:創建一個FileHandler,使用指定的文件名,而不是使用StreamHandler。
filemode:如果指明了文件名,指明打開文件的模式(如果沒有指明filemode,默認為'a')。
format:handler使用指明的格式化字符串。
datefmt:使用指明的日期/時間格式。
關于python中打印日志的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。