[Answered ]-How to debug Django exceptions in OpenShift applications

2👍

On Openshift, you can type this command :

   rhc tail -a <app-name> 

and get the traceback . It should tell you what went wrong

👤iMitwe

0👍

I strongly advocate to use Sentry ( https://getsentry.com/welcome/ ) for such debugging. It just made our lives easier. You can see all the details reported and the same errors are grouped together.

Additionally you can SSH into Openshift and use the common Linux tools or to use rhc tail as mentioned.

👤Radek

Leave a comment