The I am logging all the caught errors in the django app in the django logger. Where do the errors that do not get caught go? It should go to supervisor log file, in my opinion. But that is empty.
According to nginx docs, add line to your configuration file.
access_log /path/to/your/logs/nginx_access.log;
error_log /path/to/your/logs/nginx_error.log info;
To log with supervisor, you can add lines to your configuration file like this
[program:program]
command=/virtualenv/python /path/to/django/source/manage.py run_gunicorn --log-file /path/to/your/logs/gunicorn.log
stdout_logfile=/path/to/your/logs/supervisor.log
As you see, gunicorn log is specified in parameter log-file
Finally in django settings you can do the logging according to docs
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With