4

如果我希望 Cherrypy 的访问日志仅达到固定大小,我将如何使用旋转日志文件?

我已经尝试过http://www.cherrypy.org/wiki/Logging,它似乎已经过时,或者缺少信息。

4

4 回答 4

4

查看http://docs.python.org/library/logging.html

您可能想要配置一个 RotatingFileHandler

http://docs.python.org/library/logging.html#rotatingfilehandler

于 2009-10-21T15:35:47.550 回答
3

自定义日志处理程序的 CherryPy 文档显示了这个例子。

这是我在我的应用程序上使用的稍作修改的版本:

import logging
from logging import handlers

def setup_logging():

    log = cherrypy.log

    # Remove the default FileHandlers if present.
    log.error_file = ""
    log.access_file = ""

    maxBytes = getattr(log, "rot_maxBytes", 10000000)
    backupCount = getattr(log, "rot_backupCount", 1000)

    # Make a new RotatingFileHandler for the error log.
    fname = getattr(log, "rot_error_file", "log\\error.log")
    h = handlers.RotatingFileHandler(fname, 'a', maxBytes, backupCount)
    h.setLevel(logging.DEBUG)
    h.setFormatter(cherrypy._cplogging.logfmt)
    log.error_log.addHandler(h)

    # Make a new RotatingFileHandler for the access log.
    fname = getattr(log, "rot_access_file", "log\\access.log")
    h = handlers.RotatingFileHandler(fname, 'a', maxBytes, backupCount)
    h.setLevel(logging.DEBUG)
    h.setFormatter(cherrypy._cplogging.logfmt)
    log.access_log.addHandler(h)

setup_logging()
于 2014-11-17T15:11:52.507 回答
3

我已经尝试过http://www.cherrypy.org/wiki/Logging,它似乎已经过时,或者缺少信息。

尝试添加:

import logging
import logging.handlers
import cherrypy # you might have imported this already

而不是

log = app.log

也许试试

log = cherrypy.log
于 2010-01-19T11:44:54.640 回答
2

Cherrypy 使用标准 Python 日志记录模块进行日志记录。您需要将其更改为使用RotatingFileHandler。此处理程序将为您处理所有事情,包括在达到设定的最大大小时旋转日志。

于 2009-10-21T15:40:21.163 回答