mhearse has asked for the wisdom of the Perl Monks concerning the following question:

I'm trying to recall a perl debugging process that I haven't used in a while. It was a series of commands included with the perl distribution. You would call you program with one command. It would then generate a cryptic temp files with statistics about your program. You would then run another program on that temp file which would summarize the number of function/method calls, the time spent in each call, etc. Does anyone know these commands?
  • Comment on Trying to remember a perl debugging practice

Replies are listed 'Best First'.
Re: Trying to remember a perl debugging practice
by dsheroh (Monsignor) on Feb 08, 2008 at 06:11 UTC
    Sounds like you're trying to describe "(code) profiling", quite possibly using Devel::DProf.
      Thanks, that's it!
Re: Trying to remember a perl debugging practice
by andreas1234567 (Vicar) on Feb 08, 2008 at 08:52 UTC
Re: Trying to remember a perl debugging practice
by kyle (Abbot) on Feb 08, 2008 at 16:12 UTC