Search code examples
pythondjangodebuggingdreamhost

Debugging Django/Python on Dreamhost


Debugging Django on Dreamhost is proving quite the challenge. To my knowledge, print statements aren't available, and neither are logs... any suggestions?


Solution

  • The Django Debug Toolbar, as already mentioned, is damn useful.

    But as long as Django is running in debug mode, the brute force method equivalent to the print statement is to simply throw an exception. Put whatever output you want in the exception's text, whenever you need a quick idea of you code's state, and voila... instant output and stacktrace. This isn't a comprehensive solution, but it is a quick print statement style hack.