Re: Debugging infinite loops

2009-01-27 Thread Andrew Fong
Check out http://docs.python.org/library/logging.html for logging. There's also some Django logging middleware floating around that might be useful -- just Google for it. On Jan 27, 11:45 am, defone wrote: > Hi, > > I'm seeing occasionally bug that is causing an infinite loop. What is > the best

Debugging infinite loops

2009-01-27 Thread defone
Hi, I'm seeing occasionally bug that is causing an infinite loop. What is the best way to debug these in production environment? I was thinking that why there is no built-in simple profiler in Django, just for example to log how much time it takes to e.g. render each view? --~--~-~--~---