0

我正在使用 django 的基本日志记录功能。我已将记录器配置如下。我需要的是,我想每 24 小时在日志目录中创建一个单独的文件,以便所有日志都将写入日期明智的日志文件中。

LOGGING ={
    'version':1,
    'disable_existing_loggers': False,
    'formatters':{
        'simpleRe': {
            'format': '[{levelname}] [{asctime}] [{module}] {process:d} {thread:d} {message}',
            'style': '{',
        }
    },
    'handlers':{
        'to_file':{
            'level':'DEBUG',
            'class': 'logging.FileHandler',
            'filename':'./logs/debug.log',
            'formatter':'simpleRe',
        },
    },
    'loggers':{
        'django':{
            'handlers':['to_file'],
            'level':'DEBUG'
        }
    },
}

我还希望文件名应该类似于“debug_26102021.log”等。

4

2 回答 2

1

您可以使用logging.handlers.TimedRotatingFileHandler并在日志记录中指定处理程序配置。

'handlers': {
    'file': {
        'level': 'INFO',
        'class': 'logging.handlers.TimedRotatingFileHandler',
        'filename': 'myproject.log',
        'when': 'D', # specifies the interval
        'interval': 1, # defaults to 1, only necessary for other values 
        'backupCount': 5, # how many backup file to keep, 5 days
        'formatter': 'verbose',
    },

},  
于 2021-10-26T06:38:15.480 回答
1

Django 的日志配置基于日志模块提供的字典配置。您可以使用日志记录模块提供的任何处理程序。在这种情况下,它将是TimedRotatingFileHandler

'handlers':{
    'to_file':{
        'level':'DEBUG',
        'class': 'logging.handlers.TimedRotatingFileHandler',
        'when': 'D',
        'interval': 1,
        'backupCount': 0,
        'filename':'./logs/debug.log',
        'formatter':'simpleRe',
    },
},
于 2021-10-26T06:52:43.480 回答