Gunicorn Gevent Worker Logging Issues
I have a gunicorn server running with 1 worker. I user the logging module during the request. None of them appear in stdout. I know that gevent workers monkey patch all so I would
Solution 1:
Simply needed to add this to the gunicorn.py
errorlog = '-'
loglevel = 'info'
accesslog = '-'
Post a Comment for "Gunicorn Gevent Worker Logging Issues"