码迷,mamicode.com
首页 > 编程语言 > 详细

python logging 日志轮转文件不删除问题

时间:2016-05-07 19:36:40      阅读:369      评论:0      收藏:0      [点我收藏+]

标签:

前言

最近在维护项目的python项目代码,项目使用了 python 的日志模块 logging, 设定了保存的日志数目, 不过没有生效,还要通过contab定时清理数据。

分析

项目使用了 logging 的 TimedRotatingFileHandler :

 1 #!/user/bin/env python
 2 # -*- coding: utf-8 -*-
 3 
 4 import logging
 5 from logging.handlers import TimedRotatingFileHandler
 6 log = logging.getLogger()
 7 file_name = "./test.log"
 8 logformatter = logging.Formatter(%(asctime)s [%(levelname)s]|%(message)s)
 9 loghandle = TimedRotatingFileHandler(file_name, midnight, 1, 2)
10 loghandle.setFormatter(logformatter)
11 loghandle.suffix = %Y%m%d
12 log.addHandler(loghandle)
13 log.setLevel(logging.DEBUG)
14 
15 log.debug("init successful")

参考 python logging 的官方文档:

https://docs.python.org/2/library/logging.html

查看其 入门 实例,可以看到使用按时间轮转的相关内容:

 1 import logging
 2 
 3 # create logger
 4 logger = logging.getLogger(simple_example)
 5 logger.setLevel(logging.DEBUG)
 6 
 7 # create console handler and set level to debug
 8 ch = logging.StreamHandler()
 9 ch.setLevel(logging.DEBUG)
10 
11 # create formatter
12 formatter = logging.Formatter(%(asctime)s - %(name)s - %(levelname)s - %(message)s)
13 
14 # add formatter to ch
15 ch.setFormatter(formatter)
16 
17 # add ch to logger
18 logger.addHandler(ch)
19 
20 # ‘application‘ code
21 logger.debug(debug message)

粗看下,也看不出有什么不对的地方。

那就看下logging的代码,找到TimedRotatingFileHandler 相关的内容,其中删除过期日志的内容:

logging/handlers.py

    def getFilesToDelete(self):
        """
        Determine the files to delete when rolling over.

        More specific than the earlier method, which just used glob.glob().
        """
        dirName, baseName = os.path.split(self.baseFilename)
        fileNames = os.listdir(dirName)
        result = []
        prefix = baseName + "."
        plen = len(prefix)
        for fileName in fileNames:
            if fileName[:plen] == prefix:
                suffix = fileName[plen:]
                if self.extMatch.match(suffix):
                    result.append(os.path.join(dirName, fileName))
        result.sort()
        if len(result) < self.backupCount:
            result = []
        else:
            result = result[:len(result) - self.backupCount]
        return result

轮转删除的原理,是查找到日志目录下,匹配suffix后缀的文件,加入到删除列表,如果超过了指定的数目就加入到要删除的列表中,再看下匹配的原理:

        elif self.when == D or self.when == MIDNIGHT:
            self.interval = 60 * 60 * 24 # one day
            self.suffix = "%Y-%m-%d"
            self.extMatch = r"^\d{4}-\d{2}-\d{2}$"

exMatch 是一个正则的匹配,格式是 - 分隔的时间,而我们自己设置了新的suffix没有 - 分隔:

loghandle.suffix = ‘%Y%m%d‘

这样就找不到要删除的文件,不会删除相关的日志。

总结

1. 封装好的库,尽量使用公开的接口,不要随便修改内部变量; 

2. 代码有问题地,实在找不到原因,可以看下代码。

python logging 日志轮转文件不删除问题

标签:

原文地址:http://www.cnblogs.com/hustlijian/p/5468909.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!