I'm debugging my mod_perl/Mason application interactively using Apache::DB. While everything seem to work as advertised, I get a lot of unneeded console output from httpd. Looks like it's reporting every subroutine and eval call
That's the nature of the debugger: it tells you everything it can. If that's too much, you can either get good at using the debugger to skip to sections you care about using break points and the like, or switch to using logging as an alternative to the debugger.
- Perrin
-- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html