Log server errors in Django project using server_errors app
Follow these steps to log each server errors in your Django project:
1. Download the app from github
https://github.com/ershadul/server_errors
2. Add 'server_errors' in INSTALLED_APPS in settings.py
'server_errors',
3. Add the following middleware in settings.py
'server_errors.middleware.ServerErrorMiddleware',
4. Run syncdb command to create the tables
python manage.py syncdb