mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Fix root logging
root and logger are same level. https://docs.python.org/2/library/logging.config.html#dictionary-schema-details
This commit is contained in:
parent
c85bfba8b2
commit
6da84c614d
@ -49,8 +49,8 @@ CONFIG_DEFAULTS = dict(
|
|||||||
version=1,
|
version=1,
|
||||||
disable_existing_loggers=False,
|
disable_existing_loggers=False,
|
||||||
|
|
||||||
|
root={"level": "INFO", "handlers": ["console"]},
|
||||||
loggers={
|
loggers={
|
||||||
"root": {"level": "INFO", "handlers": ["console"]},
|
|
||||||
"gunicorn.error": {
|
"gunicorn.error": {
|
||||||
"level": "INFO",
|
"level": "INFO",
|
||||||
"handlers": ["error_console"],
|
"handlers": ["error_console"],
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user