# HG changeset patch # User Marcin Kuzminski # Date 2019-11-28 11:54:53 # Node ID 98d4e27be4147ca8e2d8c302d9be04f069e7dbc9 # Parent 5036fceae0ab8b307d59ef4f44cb8807df36d4d0 gunicorn: moved loglevel control to .ini file diff --git a/configs/development.ini b/configs/development.ini --- a/configs/development.ini +++ b/configs/development.ini @@ -62,6 +62,9 @@ asyncore_use_poll = true ## when using more than 1 worker. #workers = 2 +## Gunicorn access log level +#loglevel = info + ## process name visible in process list #proc_name = rhodecode diff --git a/configs/gunicorn_config.py b/configs/gunicorn_config.py --- a/configs/gunicorn_config.py +++ b/configs/gunicorn_config.py @@ -31,7 +31,6 @@ def get_workers(): # GLOBAL errorlog = '-' accesslog = '-' -loglevel = 'info' # SERVER MECHANICS diff --git a/configs/production.ini b/configs/production.ini --- a/configs/production.ini +++ b/configs/production.ini @@ -62,6 +62,9 @@ use = egg:gunicorn#main ## when using more than 1 worker. workers = 2 +## Gunicorn access log level +loglevel = info + ## process name visible in process list proc_name = rhodecode