Re: Debugging Deeper Into Django

2011-01-09 Thread vikalp sahni
looks like django is incorporating tighter integration with python logging library. do check out. http://docs.djangoproject.com/en/dev/topics/logging/ Though i think its only on development version as of now. more details on logging module can be find out at.

Re: Debugging Deeper Into Django

2011-01-09 Thread octopusgrabbus
Would you post more details on the python logging module, like how to configure it? On Jan 8, 2:26 pm, vikalp sahni wrote: > for custom logging you can always your python logging module, which is just > like > log4j. > > Also if you need any specifics regarding db queries

Re: Debugging Deeper Into Django

2011-01-08 Thread Russell Keith-Magee
On Sunday, January 9, 2011, octopusgrabbus wrote: > I would like to see more from Django on what it chooses to, > specifically around the loading or not loading of pages. I am running > Django on RHEL 5 WS, with mod_python. I want to stick with mod_python, > despite the

Re: Debugging Deeper Into Django

2011-01-08 Thread vikalp sahni
for custom logging you can always your python logging module, which is just like log4j. Also if you need any specifics regarding db queries etc. you can try out. Django Debug Toolbar: https://github.com/robhudson/django-debug-toolbar Hope it helps. Regards, //Vikalp On Sun, Jan 9, 2011 at

Debugging Deeper Into Django

2011-01-08 Thread octopusgrabbus
I would like to see more from Django on what it chooses to, specifically around the loading or not loading of pages. I am running Django on RHEL 5 WS, with mod_python. I want to stick with mod_python, despite the testimonies its replacement is better. Are there switches I can set to get more