[Answered ]-Catching Django Errors When Client Is Not A Web Browser?

2👍

You might try just creating custom ExceptionMiddleware. Just change the process_exception method to log the exception and request data somewhere.

Here’s an example: http://www.peterbe.com/plog/who-was-logged-in-during-a-django-exception

0👍

If the exception in the django app is not caught, and DEBUG = True, then the exception should be sent to the client.

Some options to help you get debugging info:

👤Kekoa

Leave a comment