Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I got 500 errors in Django console but it doesn't print any information to the Console about the error.

How can i print the detail to Console ?

share|improve this question

2 Answers

up vote 9 down vote accepted

Run the server with --traceback option and set DEBUG=False in settings.py.

You will get the traceback on console.

share|improve this answer
Please don't approve suggested edits like this. If needed, refer to this meta post for details. – hims056 Dec 5 '12 at 4:00

You might as well use django-sentry. This app can send tracebacks with local values etc ... and display it conveniently. So if a user finds a way to trigger an exception, you will be able to see it in your sentry and fix it more easily.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.