Possible Duplicate:
How do I force a stack backtrace for all fatal errors in Perl?

One of the things I like about Python, is that when a script exits because of an error, it spits out a traceback. I'm wondering is there anyway of getting a Perl to do this as well?

link|improve this question

feedback

closed as exact duplicate by mob, brian d foy, Dave Sherohman, DVK, George Stocker Feb 22 '10 at 21:05

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 11 down vote accepted

Add this to the top of your script:

use Carp 'verbose';
$SIG{ __DIE__ } = sub { Carp::confess( @_ ) };

It will create a stack trace on all fatal errors.

link|improve this answer
2  
You could also make that $SIG{__DIE__} = \&Carp::confess; – Leon Timmermans Feb 22 '10 at 11:44
feedback

Investigate the Carp::Always module.

link|improve this answer
4  
Carp::Always is a much better method than messing about with sigdie because you can enable it from the command line. perl -MCarp::Always my_script Very, very nice. – daotoad Feb 22 '10 at 17:03
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.