fix log twice

This commit is contained in:
caitinggui 2018-01-19 17:47:13 +08:00
parent 22ad697d1f
commit 7288ebca46

View File

@ -14,14 +14,14 @@ LOGGING_CONFIG_DEFAULTS = dict(
"sanic.error": {
"level": "INFO",
"handlers": ["error_console"],
"propagate": True,
"propagate": False,
"qualname": "sanic.error"
},
"sanic.access": {
"level": "INFO",
"handlers": ["access_console"],
"propagate": True,
"propagate": False,
"qualname": "sanic.access"
}
},