Python+Selenium(logging日誌總結)

# -*- coding:utf-8-*-
import logging
import time
import logging.handlers

now_date = time.strftime("%Y-%m-%d", time.localtime(time.time()))

LOG_FILE = "mytestlog_%s.log" % now_date
# handler = logging.handlers.RotatingFileHandler(LOG_FILE, maxBytes=1024 * 1024, backupCount=5)
logging.basicConfig(level=logging.DEBUG,
                    format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s %(funcName)s',
                    # %(asctime)s: 打印日誌的時間
                    # %(filename)s: 打印當前執行程序名
                    # %(lineno)d: 打印日誌的當前行號
                    # %(message)s: 打印日誌信息
                    # datefmt: 指定時間格式,同time.strftime()
                    # level: 設置日誌級別,默認爲logging.WARNING
                    #  %(funcName)s: 打印日誌的當前函數
                    datefmt='%Y-%m-%d %H:%M:%S',
                    filename=LOG_FILE,
                    filemode='w')

#################################################################################################
# 定義一個StreamHandler,將INFO級別或更高的日誌信息打印到標準錯誤,並將其添加到當前的日誌處理對象#
console = logging.StreamHandler()
console.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
console.setFormatter(formatter)
logging.getLogger('').addHandler(console)
#################################################################################################

'''
默認狀況下,logging將日誌打印到屏幕,日誌級別爲WARNING;
日誌級別大小關係爲:CRITICAL > ERROR > WARNING > INFO > DEBUG > NOTSET,固然也能夠本身定義日誌級別。
'''
logging.warning("hello,warning")
logging.debug("hello,debug")
logging.error("error,over")
logging.info("hello,my name is info")

一、函數

二、debug

三、日誌

相關文章
相關標籤/搜索