Apache::DProf missing some subroutines

2007-05-11 Thread John ORourke
Hi folks, Any idea why Apache::DProf would be failing to list some subroutines that are definitely being called, in the tmon.out file? I grepped all sub references from tmon.out and it's listing my method handlers, it's listing some of my constructors, and its listing some object methods,

Re: Apache::DProf missing some subroutines

2007-05-11 Thread Geoffrey Young
John ORourke wrote: Hi folks, Any idea why Apache::DProf would be failing to list some subroutines that are definitely being called, in the tmon.out file? I grepped all sub references from tmon.out and it's listing my method handlers, it's listing some of my constructors, and its listing

Re: Apache::DProf missing some subroutines

2007-05-11 Thread Jeff
, Devel::Profiler can't handle many of the DBI implementations (you have to bad_pkgs=[] them. Regards Jeff Original Message Subject: Apache::DProf missing some subroutines From: John ORourke [EMAIL PROTECTED] To: modperl modperl@perl.apache.org Date: 11 May 2007 12:36:02 Hi folks

Re: Apache::DProf missing some subroutines

2007-05-11 Thread Geoffrey Young
/projects/devel-profiler/ HTH --Geoff Regards Jeff Original Message Subject: Apache::DProf missing some subroutines From: John ORourke [EMAIL PROTECTED] To: modperl modperl@perl.apache.org Date: 11 May 2007 12:36:02 Hi folks, Any idea why Apache::DProf would

Re: Apache::DProf missing some subroutines

2007-05-11 Thread Jeff
Original Message Subject: Re:Apache::DProf missing some subroutines From: Geoffrey Young [EMAIL PROTECTED] CC: modperl modperl@perl.apache.org Date: 11 May 2007 14:11:14 Also, Devel::Profiler can't handle many of the DBI implementations (you have to bad_pkgs=[] them. I

Re: Apache::DProf missing some subroutines

2007-05-11 Thread Geoffrey Young
Jeff wrote: Original Message Subject: Re:Apache::DProf missing some subroutines From: Geoffrey Young [EMAIL PROTECTED] CC: modperl modperl@perl.apache.org Date: 11 May 2007 14:11:14 Also, Devel::Profiler can't handle many of the DBI implementations (you have to

Re: Apache::DProf missing some subroutines

2007-05-11 Thread Geoffrey Young
John ORourke wrote: Geoffrey Young wrote: Jeff wrote: Not sure if its relevant, but from general Perl usage, Devel::Profiler often fails to properly recognise function names if its USE statement ends up being executed before your classes have been USEd. yes, because

Re: Apache::DProf missing some subroutines

2007-05-11 Thread Perrin Harkins
On 5/11/07, John ORourke [EMAIL PROTECTED] wrote: Any idea why Apache::DProf would be failing to list some subroutines that are definitely being called, in the tmon.out file? Yes. You're probably loading some of your code before initializing the debugger. Put something like this in

Re: Apache::DProf missing some subroutines

2007-05-11 Thread John ORourke
Geoffrey Young wrote: Jeff wrote: Not sure if its relevant, but from general Perl usage, Devel::Profiler often fails to properly recognise function names if its USE statement ends up being executed before your classes have been USEd. yes, because Devel::Profiler scans for then during

Re: Apache::DProf missing some subroutines

2007-05-11 Thread John ORourke
Perrin Harkins wrote: On 5/11/07, John ORourke [EMAIL PROTECTED] wrote: Any idea why Apache::DProf would be failing to list some subroutines that are definitely being called, in the tmon.out file? Yes. You're probably loading some of your code before initializing the debugger. Put something