Unverified Commit 0ac6e6ba authored by 老广's avatar 老广 Committed by GitHub

Merge pull request #2418 from jumpserver/dev

[Update] 修改gunicorn日志
parents f269eae7 785cc041
......@@ -191,6 +191,9 @@ LOGGING = {
'simple': {
'format': '%(levelname)s %(message)s'
},
'msg': {
'format': '%(message)s'
}
},
'handlers': {
'null': {
......@@ -220,15 +223,20 @@ LOGGING = {
'backupCount': 7,
'filename': ANSIBLE_LOG_FILE,
},
'gunicorn_logs': {
'gunicorn_file': {
'encoding': 'utf8',
'level': 'DEBUG',
'class': 'logging.handlers.RotatingFileHandler',
'formatter': 'main',
'formatter': 'msg',
'maxBytes': 1024*1024*100,
'backupCount': 2,
'filename': GUNICORN_LOG_FILE,
},
'gunicorn_console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'msg'
},
},
'loggers': {
'django': {
......@@ -267,8 +275,8 @@ LOGGING = {
'level': "INFO",
},
'gunicorn': {
'handlers': ['console', 'gunicorn_logs'],
'level': LOG_LEVEL,
'handlers': ['gunicorn_console', 'gunicorn_file'],
'level': 'INFO',
},
# 'django.db': {
# 'handlers': ['console', 'file'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment