Django配置日志系统
在项目主配置文件中加入本代码段
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'standard': {
'format': '[%(asctime)s][%(threadName)s:%(thread)d][task_id:%(name)s][%(filename)s:%(lineno)d]'
'[%(levelname)s][%(message)s]'
},
'simple': {
'format': '[%(levelname)s][%(asctime)s][%(filename)s:%(lineno)d]%(message)s'
},
'collect': {
'format': '%(message)s'
}
},
'filters': {
'require_debug_true': {
'()': 'django.utils.log.RequireDebugTrue',
},
},
'handlers': {
'console': {
'level': 'DEBUG',
'filters': ['require_debug_true'],
'class': 'logging.StreamHandler',
'formatter': 'simple',
},
'default': {
'level': 'INFO',
'class': 'logging.handlers.RotatingFileHandler',
'filename': os.path.join(BASE_DIR, "./project_information/logs/xzy_mall.log"),
'maxBytes': 1024 * 1024 * 30,
'backupCount': 10,
'formatter': 'standard',
'encoding': 'utf-8',
},
'error': {
'level': 'ERROR',
'class': 'logging.handlers.RotatingFileHandler',
'filename': os.path.join(BASE_DIR, "./project_information/logs/xzy_mall.log"),
'maxBytes': 1024 * 1024 * 30,
'backupCount': 10,
'formatter': 'standard',
'encoding': 'utf-8',
},
'collect': {
'level': 'INFO',
'class': 'logging.handlers.RotatingFileHandler',
'filename': os.path.join(BASE_DIR, "./project_information/logs/xzy_mall.log"),
'maxBytes': 1024 * 1024 * 30,
'backupCount': 10,
'formatter': 'collect',
'encoding': "utf-8"
}
},
'loggers': {
'': {
'handlers': ['default', 'console', 'error'],
'level': 'DEBUG',
'propagate': True,
},
'collect': {
'handlers': ['console', 'collect'],
'level': 'INFO',
},
},
}
最后在配置目录下创建文件夹logs与自定义日志文件(.log文件)
执行运行Django项目 成功则会显示如上日志信息
|