欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

python 通過(guò)logging寫入日志到文件和控制臺(tái)的實(shí)例

 更新時(shí)間:2018年04月28日 10:05:43   投稿:jingxian  
下面小編就為大家分享一篇python 通過(guò)logging寫入日志到文件和控制臺(tái)的實(shí)例,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧

如下所示:

import logging 
 
# 創(chuàng)建一個(gè)logger 
logger = logging.getLogger('mylogger') 
logger.setLevel(logging.DEBUG) 
 
# 創(chuàng)建一個(gè)handler,用于寫入日志文件 
fh = logging.FileHandler('test.log') 
fh.setLevel(logging.DEBUG) 
 
# 再創(chuàng)建一個(gè)handler,用于輸出到控制臺(tái) 
ch = logging.StreamHandler() 
ch.setLevel(logging.DEBUG) 
 
# 定義handler的輸出格式 
formatter = logging.Formatter('[%(asctime)s][%(thread)d][%(filename)s][line: %(lineno)d][%(levelname)s] ## %(message)s')
fh.setFormatter(formatter) 
ch.setFormatter(formatter) 
 
# 給logger添加handler 
logger.addHandler(fh) 
logger.addHandler(ch) 
 
# 記錄一條日志 
logger.info('foorbar') 

關(guān)于formatter的配置,采用的是%(<dict key>)s的形式,就是字典的關(guān)鍵字替換。提供的關(guān)鍵字包括:

Format Description
%(name)s Name of the logger (logging channel).
%(levelno)s Numeric logging level for the message (DEBUG, INFO, WARNING, ERROR, CRITICAL).
%(levelname)s Text logging level for the message ('DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL').
%(pathname)s Full pathname of the source file where the logging call was issued (if available).
%(filename)s Filename portion of pathname.
%(module)s Module (name portion of filename).
%(funcName)s Name of function containing the logging call.
%(lineno)d Source line number where the logging call was issued (if available).
%(created)f Time when the LogRecord was created (as returned by time.time()).
%(relativeCreated)d Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded.
%(asctime)s Human-readable time when the LogRecord was created. By default this is of the form “2003-07-08 16:49:45,896” (the numbers after the comma are millisecond portion of the time).
%(msecs)d Millisecond portion of the time when the LogRecord was created.
%(thread)d Thread ID (if available).
%(threadName)s Thread name (if available).
%(process)d Process ID (if available).
%(message)s The logged message, computed as msg % args.

以上這篇python 通過(guò)logging寫入日志到文件和控制臺(tái)的實(shí)例就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • Python3.5內(nèi)置模塊之time與datetime模塊用法實(shí)例分析

    Python3.5內(nèi)置模塊之time與datetime模塊用法實(shí)例分析

    這篇文章主要介紹了Python3.5內(nèi)置模塊之time與datetime模塊用法,結(jié)合實(shí)例形式分析了Python3.5 time與datetime模塊日期時(shí)間相關(guān)操作技巧,需要的朋友可以參考下
    2019-04-04
  • ?python中字符串的常見操作總結(jié)(二)

    ?python中字符串的常見操作總結(jié)(二)

    這篇文章主要介紹了python中字符串的常見操作,文章圍繞主題展開詳細(xì)的內(nèi)容介紹,具有一定的參考價(jià)值,需要的小伙伴可以參考一下
    2022-07-07
  • python常見進(jìn)制轉(zhuǎn)換方法示例代碼

    python常見進(jìn)制轉(zhuǎn)換方法示例代碼

    Python為我們提供了強(qiáng)大的內(nèi)置函數(shù)和格式化數(shù)字的方法去實(shí)現(xiàn)進(jìn)制轉(zhuǎn)換的功能,下面這篇文章主要給大家介紹了關(guān)于python常見進(jìn)制轉(zhuǎn)換方法的相關(guān)資料,文中通過(guò)實(shí)例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2023-05-05
  • 安裝好Pycharm后如何配置Python解釋器簡(jiǎn)易教程

    安裝好Pycharm后如何配置Python解釋器簡(jiǎn)易教程

    這篇文章主要介紹了安裝好Pycharm后如何配置Python解釋器簡(jiǎn)易教程,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2019-06-06
  • Python中MYSQLdb出現(xiàn)亂碼的解決方法

    Python中MYSQLdb出現(xiàn)亂碼的解決方法

    這篇文章主要介紹了Python中MYSQLdb出現(xiàn)亂碼的解決方法,是Python操作MySQL數(shù)據(jù)庫(kù)程序設(shè)計(jì)中非常常見的問(wèn)題,需要的朋友可以參考下
    2014-10-10
  • 在Mac中PyCharm配置python Anaconda環(huán)境過(guò)程圖解

    在Mac中PyCharm配置python Anaconda環(huán)境過(guò)程圖解

    這篇文章主要介紹了在Mac中PyCharm配置python Anaconda環(huán)境過(guò)程圖解,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2020-03-03
  • python中的Pytorch建模流程匯總

    python中的Pytorch建模流程匯總

    這篇文章主要介紹了python中的Pytorch建模流程匯總,主要幫大家?guī)椭蠹沂崂砩窠?jīng)網(wǎng)絡(luò)訓(xùn)練的架構(gòu),具有一的的參考價(jià)值,需要的小伙伴可以參考一下,希望對(duì)你的學(xué)習(xí)有所幫助
    2022-03-03
  • Python yield與實(shí)現(xiàn)方法代碼分析

    Python yield與實(shí)現(xiàn)方法代碼分析

    yield的功能類似于return,但是不同之處在于它返回的是生成器。下面通過(guò)本文給大家介紹Python yield與實(shí)現(xiàn)方法,需要的朋友參考下
    2018-02-02
  • pytorch訓(xùn)練神經(jīng)網(wǎng)絡(luò)爆內(nèi)存的解決方案

    pytorch訓(xùn)練神經(jīng)網(wǎng)絡(luò)爆內(nèi)存的解決方案

    這篇文章主要介紹了pytorch訓(xùn)練神經(jīng)網(wǎng)絡(luò)爆內(nèi)存的解決方案,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2021-05-05
  • Python基礎(chǔ)入門之seed()方法的使用

    Python基礎(chǔ)入門之seed()方法的使用

    這篇文章主要介紹了Python基礎(chǔ)入門之seed()方法的使用,是Python學(xué)習(xí)當(dāng)中的基礎(chǔ)知識(shí),需要的朋友可以參考下
    2015-05-05

最新評(píng)論