Closed rafidka closed 5 months ago
Need to make sure we pass the configured log level for the web server to gunicorn as well. Something like this is required in our code for the web server:
gunicorn
os.environ["GUNICORN_CMD_ARGS"] = os.getenv( "GUNICORN_CMD_ARGS", default=f"--log-level {CONSOLE_LOG_LEVEL}" )
gunicorn follows the configured log level for the web server.
N/A
Implemented in #69.
Overview
Need to make sure we pass the configured log level for the web server to
gunicorn
as well. Something like this is required in our code for the web server:Acceptance Criteria
gunicorn
follows the configured log level for the web server.Additional Info
N/A