python 封装log输出到文件

Posted guangdeshishe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 封装log输出到文件相关的知识,希望对你有一定的参考价值。

project/util/log.py

import logging
import os
from logging import handlers

import datetime
def current_time():
    now = datetime.datetime.now()
    return now.strftime("%Y%m%d_%H.%M.%S")

class Logger(object):
    level_relations = 
        'debug': logging.DEBUG,
        'info': logging.INFO,
        'warning': logging.WARNING,
        'error': logging.ERROR,
        'crit': logging.CRITICAL
      # 日志级别关系映射

    def __init__(self, filename, level='info', when='D', backCount=3,
                 fmt='%(asctime)s - %(pathname)s[line:%(lineno)d] - %(levelname)s: %(message)s'):
        self.logger = logging.getLogger(filename)
        format_str = logging.Formatter(fmt)  # 设置日志格式
        self.logger.setLevel(self.level_relations.get(level))  # 设置日志级别
        sh = logging.StreamHandler()  # 往屏幕上输出
        sh.setFormatter(format_str)  # 设置屏幕上显示的格式
        th = handlers.TimedRotatingFileHandler(filename=filename, when=when, backupCount=backCount,
                                               encoding='utf-8')  # 往文件里写入#指定间隔时间自动生成文件的处理器
        # 实例化TimedRotatingFileHandler
        # interval是时间间隔,backupCount是备份文件的个数,如果超过这个个数,就会自动删除,when是间隔的时间单位,单位有以下几种:
        # S 秒
        # M 分
        # H 小时、
        # D 天、
        # W 每星期(interval==0时代表星期一)
        # midnight 每天凌晨
        th.setFormatter(format_str)  # 设置文件里写入的格式
        self.logger.addHandler(sh)  # 把对象加到logger里
        self.logger.addHandler(th)


root_path = os.path.abspath(os.path.dirname(__file__)).replace("util", "")
log = Logger(root_path + '\\\\log\\\\log_' + current_time() + '.txt', level='debug').logger

使用:

from util.log import log
log.debug("打印debug level log")
log.info("打印info level log")
log.warning("打印警告级别log")
log.error("打印错误级别log")
log.critical("打印严重级别log")

参考:
https://www.cnblogs.com/nancyzhu/p/8551506.html

以上是关于python 封装log输出到文件的主要内容,如果未能解决你的问题,请参考以下文章

python输入日期输出星期几

python的calendar日历库使用方法

Python之自定义封装一个简单的Log类

自动化框架--log日志封装

crontab定时任务

python自定义封装logging模块