当前位置:   article > 正文

python logging模块使用 【代码可直接复制使用】【按照日期存储自动生成文件】【同时输出到控制台和文件中】_python log日志如何按日期自动创建

python log日志如何按日期自动创建

说明

  • 利用logging模块做了一个类和一个装饰器,可以将代码直接拷贝到自己的工程中使用,测试代码和说明下面也都有。
  • 日志会自动生成文件并且按照日期存储
  • 日志会同时输出到控制台和文件中
  • 使用时可以看使用示例

参数说明:
backupCount=3 :保存3天的日志
when=“MIDNIGHT” : 每天晚上零点会保存一个新的日志

日志文件代码

#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
'''
@File    :   mt_log.py
@Time    :   2022/09/26 21:12:03
@Author  :   YuanPangZi 
@Version :   1.0
@Contact :   https://blog.csdn.net/qq_36389249?spm=1000.2115.3001.5343
@License :   bf24ebed572b07451d0342fc762710a6
@Desc    :   572b07451d0342fc
'''

# here put the import lib


import logging
from logging import handlers
import os 
import time


#日志的设置
class Logger(object):
    level_relations = {
        "debug": logging.DEBUG,
        "info": logging.INFO,
        "warning": logging.WARNING,
        "error": logging.ERROR,
        "critical": logging.CRITICAL
    }
 
    def __init__(self, filename="MtTer.log", level="info", when="D", backupCount=3, fmt="%(asctime)s - %(pathname)s[line:%(lineno)d] - %"
                                                                                              "(levelname)s: %(message)s"):
        format_str = logging.Formatter(fmt)
        streamHandler = logging.StreamHandler()
        streamHandler.setFormatter(format_str)
        log_dir=os.path.join(os.path.dirname(os.path.dirname(__file__)),"Mtlogs")
        today = time.strftime('%Y%m%d', time.localtime(time.time()))
        full_path=os.path.join(log_dir,today)
        if not os.path.exists(full_path):
            os.makedirs(full_path)
        log_path=os.path.join(full_path,filename)
        fileHandler = handlers.TimedRotatingFileHandler(filename=log_path, when=when, backupCount=backupCount, encoding="utf-8")
        fileHandler.setFormatter(format_str)
        self.logger = logging.getLogger(log_path)
        self.logger.setLevel(self.level_relations.get(level))
        self.logger.addHandler(streamHandler)
        self.logger.addHandler(fileHandler)

log = Logger(level="info", when="MIDNIGHT").logger



def Mtlog(func):
    logger = logging.getLogger(__name__)
    logger.setLevel('DEBUG')
    formatter = logging.Formatter( "%(asctime)s - %(pathname)s[line:%(lineno)d] - %(levelname)s: %(message)s")
    ch = logging.StreamHandler()
    ch.setFormatter(formatter)
    logger.addHandler(ch)
    log_dir=os.path.join(os.path.dirname(os.path.dirname(__file__)),"Mtlogs")
    today = time.strftime('%Y%m%d', time.localtime(time.time()))
    full_path=os.path.join(log_dir,today)
    if not os.path.exists(full_path):
        os.makedirs(full_path)
    log_path=os.path.join(full_path,"MtTer.log")
    file_handler = logging.FileHandler(log_path,encoding="utf8")
    file_handler.setFormatter(formatter)
    logger.addHandler(file_handler)
    
    def inner(*args, **kwargs):

        try:
            res = func(*args, **kwargs)
            logger.debug(f"func: {func.__name__} {args} - > {res}")
            return res
        except Exception as e:
            res = func(*args, **kwargs)
            logger.error(f"func: {func.__name__} {args} - > {res}")
            return res
        
    return inner
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
'
运行

测试用例

'''
@File    :   main.py
@Time    :   2022/10/11 15:25:28
@Author  :   YuanPangZi 
@Version :   1.0
@Contact :   https://blog.csdn.net/qq_36389249?spm=1000.2115.3001.5343
@License :   bf24ebed572b07451d0342fc762710a6
@Desc    :   572b07451d0342fc
'''

# here put the import lib


from mt_log import *


@Mtlog
def test(a, b):
    print(a, b)
    log.info("test!!!")
    return a,b

if __name__ == "__main__":
    test(1, 2)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

运行结果

在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/963096
推荐阅读
相关标签
  

闽ICP备14008679号