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?
|
feedback
|
|
You can use python's logging mechanism:
This will print the stack trace and will work with apache. | |||||||||
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 If you don't want to use Python's logging module, you can also | |||
|
feedback
|