I’m attempting to deploy a significant change to a python web service - updating from a Flask app to a gunicorn WSGI server. I have everything working on my local dev server but when I attempt to deploy to Render it failed with error ‘Exited with Status 1’ but no other debugging information.
My logging vars are in gunicorn config are set to:
loglevel = “debug”
capture_output = True
enable_stdio_inheritance = True
But I can’t see any logging info anywhere.
Would love some help figuring this out! I’m sure it’s something in my gunicorn config but without debugging info I can’t tell what.
Many thanks,
Chris B