python日誌模組logging

來源:互聯網
上載者:User

標籤:

1. 基礎用法

python提供了一個標準的日誌介面,就是logging模組。記錄層級有DEBUG、INFO、WARNING、ERROR、CRITICAL五種(層級依次升高),分別對應的函數為debug()、info()、warning()、error()、critical()。

>>> import logging >>> logging.debug("ni hao")>>> logging.info("ni hao2")>>> logging.warning("ni hao")WARNING:root:ni hao>>> logging.error("ni hao")ERROR:root:ni hao>>> logging.critical("ni hao")CRITICAL:root:ni hao>>> 

可以發現debug()和info()方法沒有顯示任何資訊,這是因為預設的記錄層級是WARNING,所以低於此層級的日誌不會記錄。

可以利用函數basicCinfig修改記錄層級

>>> import logging>>> logging.basicConfig(level=logging.INFO)>>> logging.info("nihao")INFO:root:nihao>>> logging.debug("dfasl")>>> logging.basicConfig(level=logging.DEBUG)>>> logging.info(4)INFO:root:4>>>

basicConfig()函數還可以定義更多的內容,如

logging.basicConfig(format=log_format,datefmt=‘%Y-%m-%d %H:%M:%S %p‘,level=logging.DEBUG) 

舉例 

import logginglog_format = ‘%(filename)s %(funcName)s %(asctime)s %(message)s‘log_filename = "logging_test.log"logging.basicConfig(filename=log_filename, format=log_format, datefmt=‘%Y-%m-%d %H:%M:%S:%S %p‘, filemode=‘w‘, level=logging.INFO)logging.warning("warning###########")logging.warning("[email protected]@@@@@@@@@@@@@")logging.error("error~~~~~~~~~~~~~~~~")

 結果(輸出檔案“logging_test.log”內容)

del.py <module> 2015-04-30 16:29:02:02 PM warningdel.py <module> 2015-04-30 16:29:02:02 PM errordel.py <module> 2015-04-30 16:29:02:02 PM error

 

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.WARNINGstream: 指定將日誌的輸出資料流,可以指定輸出到sys.stderr,sys.stdout或者檔案,預設輸出到sys.stderr,當stream和filename同時指定時,stream被忽略

:日誌的設定是使用basicConfig()方法,日誌寫入檔案的預設是‘a’,即“追加”,如果想覆蓋檔案,使用filemode=‘w‘。

logging模組的功能非常強大,可以通過更加自由的介面,自訂出更複雜的日誌形式。需要用到下面3種對象logger、formatter、handler 。以下介紹logger

 

2. logger

logger對象直接提供日誌介面。

通過handler對象可以把日誌內容寫到不同的地方。

例:將日誌同時輸出到檔案和螢幕

#coding: utf-8import logginglogger = logging.getLogger()logger.setLevel(logging.DEBUG)formatter = logging.Formatter(‘%(asctime)s - %(name)s - %(levelname)s - %(message)s‘) fh = logging.FileHandler("test.log")ch = logging.StreamHandler()fh.setFormatter(formatter)ch.setFormatter(formatter)logger.addHandler(fh)        #可以設定addHandler新增內容(fh、ch、fh+ch),從而設定輸出位置logger.addHandler(ch)logger.error("error$$$$$$$$$$")logger.debug("aaaaa**********")

 

python日誌模組logging

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.