inkdroid writes "At the next chicago.pm meeting on Dec 9th @ 7PM Steven Lembark will go over the basics of using the Perl debugger to set breakpoints and interactively examine variables and structures at runtime. He will also cover using $DB::single, $DB::trace (and why to remove them before releasing a module
Re:$DB::single, $DB::trace
doom on 2003-11-21T06:18:56
Ah, I see they're flags in the now standard DB module:$DB::single
Single-step flag. Will be true if the API will stop at the next statement.
$DB::trace
This flag is set to true if the API is tracing through subroutine calls.