You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
755 B
44 lines
755 B
[loggers]
|
|
keys=root,gunicorn.access,gunicorn.error
|
|
|
|
[logger_root]
|
|
level=INFO
|
|
handlers=root
|
|
|
|
[logger_gunicorn.access]
|
|
level=INFO
|
|
handlers=gunicorn.access
|
|
qualname=gunicorn.access
|
|
propagate=0
|
|
|
|
[logger_gunicorn.error]
|
|
level=INFO
|
|
handlers=gunicorn.error
|
|
qualname=gunicorn.error
|
|
propagate=0
|
|
|
|
[handlers]
|
|
keys=root,gunicorn.access,gunicorn.error
|
|
|
|
[handler_root]
|
|
class=logging.StreamHandler
|
|
formatter=default
|
|
args=(sys.stdout,)
|
|
|
|
[handler_gunicorn.access]
|
|
class=logging.StreamHandler
|
|
formatter=default
|
|
args=(sys.stdout,)
|
|
|
|
[handler_gunicorn.error]
|
|
class=logging.StreamHandler
|
|
formatter=default
|
|
args=(sys.stdout,)
|
|
|
|
[formatters]
|
|
keys=default
|
|
|
|
[formatter_default]
|
|
class=logging.Formatter
|
|
format=* %(asctime)s [%(levelname)s] {%(filename)s} - %(message)s
|
|
datefmt=%x %X
|
|
|