Re: Debugging in Py

2009-03-27 Thread Lawson English
Jeremiah Dodds wrote: On Wed, Mar 25, 2009 at 9:25 PM, *nixtechno > wrote: Big thanks tkc, and I was wondering what your thoughts are on logging module: http://docs.python.org/library/logging.html "Instead of using many print statements for debugging,

Re: Debugging in Py

2009-03-26 Thread Jeremiah Dodds
On Wed, Mar 25, 2009 at 9:25 PM, *nixtechno wrote: > Big thanks tkc, and I was wondering what your thoughts are on logging > module: http://docs.python.org/library/logging.html > > "Instead of using many print statements for debugging, use > logger.debug: Unlike the print statements, which you wi

Re: Debugging in Py

2009-03-25 Thread *nixtechno
Big thanks tkc, and I was wondering what your thoughts are on logging module: http://docs.python.org/library/logging.html "Instead of using many print statements for debugging, use logger.debug: Unlike the print statements, which you will have to delete or comment out later, the logger.debug state

Re: Debugging in Py

2009-03-25 Thread Tim Chase
I'm just wondering if you all have any resources on Debugging that you all would "recommend." Due to the fact I'm doing some debugging as a beginner and this has the best of me, and I'm looking at trying to learn more about what and how to debug within Py using print, and etc... For most of what

Debugging in Py

2009-03-25 Thread *nixtechno
I'm just wondering if you all have any resources on Debugging that you all would "recommend." Due to the fact I'm doing some debugging as a beginner and this has the best of me, and I'm looking at trying to learn more about what and how to debug within Py using print, and etc... There is so much o