python 中關於logging 日誌的輸出設定

  1. #!/usr/bin/python  
  2. # coding: utf-8  
  3.    
  4. import logging  
  5. import logging.handlers  
  6. from logging import *  
  7. from datetime import *  
  8.   
  9. logger = logging.getLogger()  
  10. logger.setLevel(logging.DEBUG)  
  11.   
  12. rht = logging.handlers.TimedRotatingFileHandler("reindex_out.log", 'D')  
  13. fmt = logging.Formatter("%(asctime)s %(pathname)s %(filename)s %(funcName)s %(lineno)s \  
  14.      %(levelname)s - %(message)s", "%Y-%m-%d %H:%M:%S")  
  15. rht.setFormatter(fmt)  
  16. logger.addHandler(rht)  
  17.   
  18. debug = logger.debug  
  19. info = logger.info  
  20. warning = logger.warn  
  21. error = logger.error  
  22. critical = logger.critical  

 

  1. #!/usr/bin/env python  
  2. # coding utf-8  
  3.    
  4. from logger import *  
  5. import sys  
  6. import os  
  7.    
  8. info("log from logger info")  
  9.   
  10. debug("this is from test.py")  
  11. print 'current dir is ' + os.getcwd()

 format: 指定輸出的格式和內容,format能夠輸出不少有用信息,如上例所示:python

  1. %(levelno)s:         打印日誌級別的數值  
  2.  %(levelname)s:    打印日誌級別名稱  
  3.  %(pathname)s:    打印當前執行程序的路徑,其實就是sys.argv[0]  
  4.  %(filename)s:      打印當前執行程序名  
  5.  %(funcName)s:    打印日誌的當前函數  
  6.  %(lineno)d:         打印日誌的當前行號  
  7.  %(asctime)s:      打印日誌的時間  
  8.  %(thread)d:        打印線程ID  
  9.  %(threadName)s: 打印線程名稱  
  10.  %(process)d:      打印進程ID  
  11.  %(message)s:    打印日誌信息 

datefmt: 指定時間格式,同time.strftime()函數

level: 設置日誌級別,默認爲logging.WARNINGthis

 

級別 對應的值
CRITICAL 50
ERROR 40
WARNING 30
INFO 20
DEBUG 10
NOTSET 0

 

能夠給日誌對象(Logger Instance)設置日誌級別,低於該級別的日誌消息將會被忽略,也能夠給Hanlder設置日誌級別,對於低於該級別的日誌消息, Handler也會忽略。線程

相關文章
相關標籤/搜索