Python學習---重點模組之logging

來源:互聯網
上載者:User

標籤:height   tabs   class   orm   txt   for   too   add   hello   

記錄層級

記錄層級  critical > error > warning > info > debug, 預設是從warning開始列印

import logging# 記錄層級  critical > error > warning > info > debuglogging.debug(‘hello world‘)logging.info(‘hello world‘)logging.warning(‘hello world‘)logging.error(‘hello world‘)logging.critical(‘hello world‘)
日誌的配置

配置的 basicConfig檔案只能輸出到檔案中,但是配合stream參數可以達到螢幕/檔案均輸出的效果

預設追加模式

預設是輸出到螢幕,有filename則輸出到檔案

直接用logging配置
import logging# 配置的 basicConfig檔案只能輸出到檔案中,但是配合stream參數可以達到螢幕/檔案均輸出的效果logging.basicConfig(level=logging.DEBUG,  ormat=‘%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s‘,                    datefmt=‘%a, %d %b %Y %H:%M:%S‘,                    #stream 輸出的流                    filename=‘test.log‘, # 預設是輸出到螢幕,有filename則輸出到檔案                    filemode=‘a‘)   # 預設追加模式logging.debug(‘debug message‘)logging.info(‘info message‘)logging.warning(‘warning message‘)logging.error(‘error message‘)logging.critical(‘critical message‘)
 

format參數中可能用到的格式化串:

%(name)s Logger的名字

%(levelno)s 數字形式的記錄層級

%(levelname)s 文本形式的記錄層級

%(pathname)s 調用日誌輸出函數的模組的完整路徑名,可能沒有

%(filename)s 調用日誌輸出函數的模組的檔案名稱

%(module)s 調用日誌輸出函數的模組名

%(funcName)s 調用日誌輸出函數的函數名

%(lineno)d 調用日誌輸出函數的語句所在的程式碼

%(created)f 目前時間,用UNIX標準的表示時間的浮 點數表示

%(relativeCreated)d 輸出日誌資訊時的,自Logger建立以 來的毫秒數

%(asctime)s 字串形式的目前時間。預設格式是 “2003-07-08 16:49:45,896”。逗號後面的是毫秒

%(thread)d 線程ID。可能沒有

%(threadName)s 線程名。可能沒有

%(process)d 進程ID。可能沒有

%(message)s使用者輸出的訊息

logger對象:可以檔案列印,也可以螢幕輸出

import logging# 建立了一個logger對象,並且命名為log = logging.Logger(‘user_logger‘, level=logging.INFO)# 變更記錄檔層級,預設是warning層級# log.setLevel(logging.DEBUG)# 檔案輸出對象log_txt = logging.FileHandler(‘log.log‘)# 螢幕輸出對象log_str = logging.StreamHandler()log_format = logging.Formatter(‘%(asctime)s - %(name)s - %(levelname)s -[line:%(lineno)d]- %(message)s‘)# 螢幕輸出log_str.setFormatter(log_format)# 檔案輸出log_txt.setFormatter(log_format)# log 對象添加螢幕輸出log.addHandler(log_str)# log 對象添加檔案輸出log.addHandler(log_txt)# 輸出內容,預設warning以上的log都可以列印log.debug(‘log debug message‘)log.info(‘log info message‘)log.warning(‘log warning message‘)log.error(‘log error message‘)log.critical(‘log critical message‘)

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.