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