您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)Python中l(wèi)ogging日志庫(kù)的示例分析的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
用作記錄日志,默認(rèn)分為六種日志級(jí)別(括號(hào)為級(jí)別對(duì)應(yīng)的數(shù)值)
NOTSET(0)
DEBUG(10)
INFO(20)
WARNING(30)
ERROR(40)
CRITICAL(50)
special
在自定義日志級(jí)別時(shí)注意不要和默認(rèn)的日志級(jí)別數(shù)值相同
logging 執(zhí)行時(shí)輸出大于等于設(shè)置的日志級(jí)別的日志信息,如設(shè)置日志級(jí)別是 INFO,則 INFO、WARNING、ERROR、CRITICAL 級(jí)別的日志都會(huì)輸出。
Logger:日志,暴露函數(shù)給應(yīng)用程序,基于日志記錄器和過濾器級(jí)別決定哪些日志有效。
LogRecord :日志記錄器,將日志傳到相應(yīng)的處理器處理。
Handler :處理器, 將(日志記錄器產(chǎn)生的)日志記錄發(fā)送至合適的目的地。
Filter :過濾器, 提供了更好的粒度控制,它可以決定輸出哪些日志記錄。
Formatter:格式化器, 指明了最終輸出中日志記錄的格式。
logging 使用非常簡(jiǎn)單,使用 basicConfig()
方法就能滿足基本的使用需要;如果方法沒有傳入?yún)?shù),會(huì)根據(jù)默認(rèn)的配置創(chuàng)建Logger 對(duì)象,默認(rèn)的日志級(jí)別被設(shè)置為 WARNING,該函數(shù)可選的參數(shù)如下表所示。
參數(shù)名稱 | 參數(shù)描述 |
---|---|
filename | 日志輸出到文件的文件名 |
filemode | 文件模式,r[+]、w[+]、a[+] |
format | 日志輸出的格式 |
datefat | 日志附帶日期時(shí)間的格式 |
style | 格式占位符,默認(rèn)為 "%" 和 “{}” |
level | 設(shè)置日志輸出級(jí)別 |
stream | 定義輸出流,用來初始化 StreamHandler 對(duì)象,不能 filename 參數(shù)一起使用,否則會(huì)ValueError 異常 |
handles | 定義處理器,用來創(chuàng)建 Handler 對(duì)象,不能和 filename 、stream 參數(shù)一起使用,否則也會(huì)拋出 ValueError 異常 |
logging代碼
logging.debug("debug") logging.info("info") logging.warning("warning") logging.error("error")5 logging.critical("critical")
測(cè)試結(jié)果
WARNING:root:warning
ERROR:root:error
CRITICAL:root:critical
但是當(dāng)發(fā)生異常時(shí),直接使用無參數(shù)的 debug() 、 info() 、 warning() 、 error() 、 critical() 方法并不能記錄異常信息,需要設(shè)置 exc_info=True 才可以,或者使用 exception() 方法,還可以使用 log() 方法,但還要設(shè)置日志級(jí)別和 exc_info 參數(shù)
a = 5 b = 0 try: c = a / b except Exception as e: # 下面三種方式三選一,推薦使用第一種 logging.exception("Exception occurred") logging.error("Exception occurred", exc_info=True) logging.log(level=logging.ERROR, msg="Exception occurred", exc_info=True)
Formatter 對(duì)象用來設(shè)置具體的輸出格式,常用格式如下表所示
格式 | 變量描述 |
---|---|
%(asctime)s | 將日志的時(shí)間構(gòu)造成可讀的形式,默認(rèn)情況下是精確到毫秒,如 2018-10-13 23:24:57,832,可以額外指定 datefmt 參數(shù)來指定該變量的格式 |
%(name) | 日志對(duì)象的名稱 |
%(filename)s | 不包含路徑的文件名 |
%(pathname)s | 包含路徑的文件名 |
%(funcName)s | 日志記錄所在的函數(shù)名 |
%(levelname)s | 日志的級(jí)別名稱 |
%(message)s | 具體的日志信息 |
%(lineno)d | 日志記錄所在的行號(hào) |
%(pathname)s | 完整路徑 |
%(process)d | 當(dāng)前進(jìn)程ID |
%(processName)s | 當(dāng)前進(jìn)程名稱 |
%(thread)d | 當(dāng)前線程ID |
%threadName)s | 當(dāng)前線程名稱 |
#!/usr/bin/env python # -*- coding: utf-8 -*- """ __title__ = logging工具類 __Time__ = 2019/8/8 19:26 """ import logging from logging import handlers class Loggers: __instance = None def __new__(cls, *args, **kwargs): if not cls.__instance: cls.__instance = object.__new__(cls, *args, **kwargs) return cls.__instance def __init__(self): # 設(shè)置輸出格式 formater = logging.Formatter( '[%(asctime)s]-[%(levelname)s]-[%(filename)s]-[%(funcName)s:%(lineno)d] : %(message)s') # 定義一個(gè)日志收集器 self.logger = logging.getLogger('log') # 設(shè)定級(jí)別 self.logger.setLevel(logging.DEBUG) # 輸出渠道一 - 文件形式 self.fileLogger = handlers.RotatingFileHandler("./test.log", maxBytes=5242880, backupCount=3) # 輸出渠道二 - 控制臺(tái) self.console = logging.StreamHandler() # 控制臺(tái)輸出級(jí)別 self.console.setLevel(logging.DEBUG) # 輸出渠道對(duì)接輸出格式 self.console.setFormatter(formater) self.fileLogger.setFormatter(formater) # 日志收集器對(duì)接輸出渠道 self.logger.addHandler(self.fileLogger) self.logger.addHandler(self.console) def debug(self, msg): self.logger.debug(msg=msg) def info(self, msg): self.logger.info(msg=msg) def warn(self, msg): self.logger.warning(msg=msg) def error(self, msg): self.logger.error(msg=msg) def excepiton(self, msg): self.logger.exception(msg=msg) loggers = Loggers() if __name__ == '__main__': loggers.debug('debug') loggers.info('info')
#!/usr/bin/env python # -*- coding: utf-8 -*- """ __title__ = logzero日志封裝類 __Time__ = 2019/8/8 19:26 """ import logging import logzero from logzero import logger class Logzero(object): __instance = None def __new__(cls, *args, **kwargs): if not cls.__instance: cls.__instance = object.__new__(cls, *args, **kwargs) return cls.__instance def __init__(self): self.logger = logger # console控制臺(tái)輸入日志格式 - 帶顏色 self.console_format = '%(color)s' \ '[%(asctime)s]-[%(levelname)1.1s]-[%(filename)s]-[%(funcName)s:%(lineno)d] 日志信息: %(message)s ' \ '%(end_color)s ' # 創(chuàng)建一個(gè)Formatter對(duì)象 self.formatter = logzero.LogFormatter(fmt=self.console_format) # 將formatter提供給setup_default_logger方法的formatter參數(shù) logzero.setup_default_logger(formatter=self.formatter) # 設(shè)置日志文件輸出格式 self.formater = logging.Formatter( '[%(asctime)s]-[%(levelname)s]-[%(filename)s]-[%(funcName)s:%(lineno)d] 日志信息: %(message)s') # 設(shè)置日志文件等級(jí) logzero.loglevel(logging.DEBUG) # 輸出日志文件路徑和格式 logzero.logfile("F:\\imocInterface\\log/tests.log", formatter=self.formater) def debug(self, msg): self.logger.debug(msg=msg) def info(self, msg): self.logger.info(msg=msg) def warning(self, msg): self.logger.warning(msg=msg) def error(self, msg): self.logger.error(msg=msg) def exception(self, msg): self.logger.exception(msg=msg) logzeros = Logzero() if __name__ == '__main__': logzeros.debug("debug") logzeros.info("info") logzeros.warning("warning") logzeros.error("error") a = 5 b = 0 try: c = a / b except Exception as e: logzeros.exception("Exception occurred")
感謝各位的閱讀!關(guān)于“Python中l(wèi)ogging日志庫(kù)的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。