How do i get stack traces in perl?
+12
A:
Carp::confess
(from use Carp;
) will give you a full stack trace as part of the error. If you just need it as part of something failing, confess
is all you really need.
Per comments, here's output of various Carp
functions:
use strict;
use warnings;
use Carp qw/longmess cluck confess/;
sub foo {
&bar;
}
sub bar {
&baz;
}
sub baz {
shift->();
}
my %tests = (
'longmess' => sub { print longmess 'longmess' },
'cluck' => sub { cluck 'using cluck' },
'confess' => sub { confess 'using confess' },
);
while (my ($name, $sub) = each %tests) {
print "$name - before eval:\n";
eval {
foo($sub);
};
print "$name - before if:\n";
if ($@) {
print "caught: $@";
}
print "$name - done\n\n";
}
Running this script, you get:
longmess - before eval: longmess at - line 14 main::baz called at - line 10 main::bar called at - line 6 main::foo('CODE(0x183a4d0)') called at - line 26 eval {...} called at - line 25 longmess - before if: longmess - done confess - before eval: confess - before if: caught: using confess at - line 20 main::__ANON__() called at - line 14 main::baz called at - line 10 main::bar called at - line 6 main::foo('CODE(0x183a3e0)') called at - line 26 eval {...} called at - line 25 confess - done cluck - before eval: using cluck at - line 19 main::__ANON__() called at - line 14 main::baz called at - line 10 main::bar called at - line 6 main::foo('CODE(0x183a434)') called at - line 26 eval {...} called at - line 25 cluck - before if: cluck - done
Running this script but redirecting STDOUT (thus showing what gets printed on STDERR), you get:
using cluck at - line 19 main::__ANON__() called at - line 14 main::baz called at - line 10 main::bar called at - line 6 main::foo('CODE(0x183a434)') called at - line 26 eval {...} called at - line 25
Robert P
2010-03-02 23:47:36
That sends the stack trace and error to STDERR; if you need to capture it, directly use the underlying Carp::longmess().And Carp::cluck is like confess but dies afterwards.
ysth
2010-03-03 01:13:44
I think that's backwards -- `cluck` is a warn with a stack trace and `confess` is a die.
mobrule
2010-03-03 02:32:04
err, yes, that was backwards
ysth
2010-03-04 06:01:22
+6
A:
For debugging needs, I like Carp::Always.
perl -MCarp::Always my_script.pl
daotoad
2010-03-03 01:14:26