Reputation: 3350
I've been running my python server side with gunicorn for awhile and it worked perfectly
today it stopped returning results for some api calls, I pkill gunicorn
and run with debug as python manage.py runserver 0.0.0.0:xxxx
everything works fine
I have 2 questions:
Upvotes: 0
Views: 545
Reputation: 1798
Use --log-file=-
to output the errors in the command line (stderr), for example:
gunicorn base.wsgi -c config.conf --log-file=-
Upvotes: 1