try:
    print blah
except KeyError:
    traceback.print_exc()

I used to debug like this. I'd print to the console. Now, I want to log everything instead of print, since Apache doesn't allow printing. So, how do I log this entire traceback?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

You can use python's logging mechanism:

import logging
...

logger = logging.getLogger("blabla")
...

try:
    print blah # You can use logger.debug("blah") instead of print
except KeyError:
    logger.exception("An error occurred")

This will print the stack trace and will work with apache.

link|improve this answer
This actually logs the entire traceback? – TIMEX Jan 29 '11 at 22:39
yes, full stack trace. From the documentation: "Logger.exception() creates a log message similar to Logger.error(). The difference is that Logger.exception() dumps a stack trace along with it.". This is the link to the documentation - docs.python.org/library/logging.html – Li. Jan 29 '11 at 22:42
Where does the log get saved to? You defined logger = logging.getLogger('bla'), but does this save to a specific diretory? A file or database? – TIMEX Jan 29 '11 at 23:45
The log is saved to a file (default behavior). You can configure the log file location: LOG_FILENAME = 'example.log' logging.basicConfig(filename=LOG_FILENAME,level=logging.DEBUG), you can find an explanation in the documentation - docs.python.org/library/logging.html#simple-examples – Li. Jan 30 '11 at 18:24
feedback

If you're running Django's trunk version (or 1.3 when it's released), there are a number of default logging configurations built in which are integrated with Python's standard logging module. For that, all you need to do is import logging, call logger = logging.getLogger(__name__) and then call logger.exception(msg) and you'll get both your message and a stack trace. Docs for Django's logging functionality and Python's logger.exception method would be handy references.

If you don't want to use Python's logging module, you can also import sys and write to sys.stderr rather than using print. On the command line this goes to the screen, when running under Apache it'll go into your error logs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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