RE: PERL debuggers

2004-01-07 Thread Dan Muey
> Are there any free PERL debuggers? Have you tried use strict and use warnigns in your scripts? Also perl -c script.pl is helpfule and then the perl debugger itself: perl -d I'm sure their's thrid party stuff but I never use any, the above does plenty for my needs. HTH Dmuey > > I once came

Re: PERL debuggers

2004-01-07 Thread Wiggins d Anconia
> > Are there any free PERL debuggers? > > I once came across pvdb (a vi-aware front-end for the PERL debugger > developed by Tom Christainsen), but I never got it to work. > perldoc perldebtut perldoc perldebug Have you had a look at those? http://danconia.org p.s. perldoc -q '"Perl"' --

Re: PERL debuggers

2004-01-07 Thread James Edward Gray II
On Jan 7, 2004, at 2:35 PM, <[EMAIL PROTECTED]> wrote: Beside perldebug, ... Why? This is a very capable debugger. Why would it be a choice to avoid? James -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: PERL debuggers

2004-01-07 Thread Jenda Krynicky
From: <[EMAIL PROTECTED]> > Are there any free PERL debuggers? http://world.std.com/~aep/ptkdb/ Jenda = [EMAIL PROTECTED] === http://Jenda.Krynicky.cz = When it comes to wine, women and song, wizards are allowed to get drunk and croon as much as they like. -- Te

RE: PERL debuggers

2004-01-07 Thread Esposito, Anthony
] -Original Message- From: Wiggins d Anconia [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 07, 2004 2:29 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: PERL debuggers > > Are there any free PERL debuggers? > > I once came across pvdb (a vi-aware front-end

Re: PERL debuggers

2004-01-07 Thread Dan Anderson
I've created a module that I am planning on eventually releasing to CPAN which provides a good framework for debugging. Basically you can have your code report 4 types of warnings: INFO WARNING ERROR FATAL_ERROR You can also assign a "class" to each and turn on or off all of one type or all of

Re: PERL debuggers

2004-01-07 Thread Dan Anderson
I'd like to add that it's not a debugger like the one someone else posted for stepping through your code and setting breakpoints. It's designed to allow you to create a log with the state of your script and what has been done, so that way you can have somebody who is not a programmer and who is us

Re: PERL debuggers

2004-01-07 Thread Wiggins d Anconia
> I've created a module that I am planning on eventually releasing to CPAN > which provides a good framework for debugging. Basically you can have > your code report 4 types of warnings: > > INFO > WARNING > ERROR > FATAL_ERROR > > You can also assign a "class" to each and turn on or off all

Re: PERL debuggers

2004-01-07 Thread William.Ampeh
No, I love perldebug, I was just wondering if I there were any other "neat tools" unknown to me. __ William Ampeh (x3939) Federal Reserve Board -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: PERL debuggers

2004-01-08 Thread Peter Scott
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (William Ampeh) writes: > >Sorry I forgot to include this in my earlier question: > >Beside perldebug, and the usual (use strict and perl -c). You apppear to have a broad definition of "debugger" that extends beyond the customary trace/inspect too

RE: Perl Debuggers - was Re: Simulate `sh -x'

2002-06-23 Thread Timothy Johnson
No, it's alot better. It has a look that is similar to the MSVC or VB debugging tools and allows you to step into/over, etc. I don't use it all the time, but every once in a while it can be useful. It lets you see what is happening all in one place. -Original Message- From: drieux To

Re: Perl Debuggers - was Re: Simulate `sh -x'

2002-06-23 Thread Jenda Krynicky
From: drieux <[EMAIL PROTECTED]> > On Saturday, June 22, 2002, at 05:01 , Timothy Johnson wrote: > > > Some of you out there using Win32, the Activestate Perl Dev Kit > > comes with an excellent Perl Debugger. It does allow you to step > > into and out of functions, watch variables for changes,