Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It is running under DEBUG = True mode. Sometimes it can throw out an error message with traceback information when encounter an error but sometimes it just display the following lines:

Unhandled Exception

An unhandled exception was thrown by the application.

I have to switch to development server to see detail message.

How can I make it always display traceback message when an error is encountered?

share|improve this question
So the displaying of the error is not consistent, is there any pattern to what errors are shown and what aren't? – Ralph Willgoss Dec 18 '09 at 4:06
How are you serving the site? You say below Nginx, but is it FastCGI? – Carl Meyer Dec 18 '09 at 14:55

5 Answers

up vote 5 down vote accepted

Maybe you can use this snippet, this will log exceptions in apache's log:

utils.py:

def log_traceback(exception, args):
    import sys, traceback, logging
    exceptionType, exceptionValue, exceptionTraceback = sys.exc_info()
    logging.debug(exception)
    logging.debug(args)
    for tb in traceback.format_exception(exceptionType, exceptionValue, exceptionTraceback):
        logging.debug(tb)

site_logging.py:

import logging
import sys

logger = logging.getLogger('')
logger.setLevel(logging.DEBUG)
handler = logging.StreamHandler(sys.stderr)
handler.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(levelname)-8s %(message)s')
handler.setFormatter(formatter)
logger.addHandler(handler)

Put it in your settings.py :

import site_logging

And in your code:

from where.is.your.utils import log_traceback
try:
   `do something`
except Exception, args:
    log_traceback(Exception, args)
share|improve this answer

That's what DEBUG=True is for: to show the full traceback. The idea is that regular users do not want (nor do you want them to) see anything other than a simple error message.

share|improve this answer
There are certain errors that occur outside the 500-debug-page handling, where you still get a raw error from the webserver. – Carl Meyer Dec 18 '09 at 14:55
Yep, I've noticed too that sometimes I get mod_python error pages rather than the Django page. – JAL Jan 12 '10 at 3:23

Are you using Apache?
Just out of interest is this your Production or Dev environment where you want to see the traceback?

From the DJango Book on security - Exposed error messages

Users deploying under Apache and mod_python should also make sure they have PythonDebug Off in their Apache conf files; this will ensure that any errors that occur before Django’s had a chance to load won’t be displayed publicly.

I assume you want PythonDebug On, this is recommended for Development only.

share|improve this answer
@Ralph, I'm using Nginx. – jack Dec 18 '09 at 3:02
i'm using mod_python with PythonDebug Off and i can still switch DEBUG = True in my settings to quickly troubleshoot an issue. It still gives me the handy django debug page instead of apache's 500 internal server error page. – Brandon H Dec 18 '09 at 3:04
sorry Jack, haven't used Nginx, so maybe someone with Nginx might be able to help trouble shoot. Brandon - could this be a Nginx specific? – Ralph Willgoss Dec 18 '09 at 4:05

Just connect to the got_request_exception signal and log the exception:

from django.core.signals import got_request_exception
import logging    

def log(*args, **kwargs):
    logging.exception('error')

got_request_exception.connect(log)

This will log the whole trace. In the dev server, it logs in the console.

share|improve this answer

I have an exactly similar situation sometime in the past and I have blogged about it also. And I came up with trying multiple options along with this. It solved my purpose, I advice you also try running imports_checker

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.