fix: Namespacing of sanic logger

This commit is contained in:
Markus Unterwaditzer 2018-09-29 22:40:05 +02:00
parent 0e33d46ead
commit 7d0c0fdf7c

View File

@ -58,6 +58,6 @@ LOGGING_CONFIG_DEFAULTS = dict(
)
logger = logging.getLogger('root')
logger = logging.getLogger('sanic.root')
error_logger = logging.getLogger('sanic.error')
access_logger = logging.getLogger('sanic.access')