Re: Strategies for using the debugger with complex applications

2009-12-03 Thread Andrew Brosnan
Worked like a charm Peter. Thank you so much! On Dec 3, 2009, at 10:48 AM, Peter Scott wrote: On Sat, 28 Nov 2009 16:05:35 -0500, Andrew Brosnan wrote: Hello, I'm curious about the strategies that others use for running more complex applications in the debugger. A content management system

Re: Strategies for using the debugger with complex applications

2009-12-03 Thread Peter Scott
On Sat, 28 Nov 2009 16:05:35 -0500, Andrew Brosnan wrote: > Hello, > > I'm curious about the strategies that others use for running more > complex applications in the debugger. A content management system for > example might require session data and user input in order to run it's > code, all of

Re: Strategies for using the debugger with complex applications

2009-11-28 Thread Jan Ploski
Hi Andrew, One way to cope with the task you described is to use a debugger frontend such as EPIC. It allows you to set all the breakpoints in source files beforehand in the IDE, then it takes care of actually inserting those breakpoints at runtime whenever the right .pm files are loaded. It also

Strategies for using the debugger with complex applications

2009-11-28 Thread Andrew Brosnan
Hello, I'm curious about the strategies that others use for running more complex applications in the debugger. A content management system for example might require session data and user input in order to run it's code, all of which gets processed along a journey through a large stack. H