in reply to Need Increased Funeral Verbosity
use Log::Log4perl qw(:easy); Log::Log4perl->easy_init($DEBUG); $SIG{__DIE__} = sub { $Log::Log4perl::caller_depth++; LOGCONFESS @_; }; Foo::badsub(); package Foo; sub badsub { die "Argh!!"; } [download]