1. 程式人生 > >python學習第五十二天logging模組的使用

python學習第五十二天logging模組的使用

   很多程式都有記錄日誌的需求,並且日誌包含的資訊即有正常的程式訪問日誌,還可能有錯誤,警告等資訊輸出,python的

logging模組提供了標準的日誌介面,你可以通過它儲存各種格式的日誌,logging的日誌可以分debug(),info()

warning() error() and critical()個級別,下面我們看一下怎麼用

import logging

logging.warning("www.96net.com.cn")

logging,critical("www.dc3688.com")

logging.info("so this is good")

logging.debug("this is should go to file")

這裡的info 等於level 等級