in reply to Shorter Carp stack backtrace
I don't think this can be configured — at least not without modifying the source :)
From Carp/Heavy.pm:
sub ret_backtrace { ... my %i = caller_info($i); $mess = "$err at $i{file} line $i{line}$tid_msg\n"; while (my %i = caller_info(++$i)) { $mess .= "\t$i{sub_name} called at $i{file} line $i{line}$tid_ms +g\n"; } return $mess; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Shorter Carp stack backtrace
by Anonymous Monk on Apr 16, 2010 at 12:33 UTC | |
|
Re^2: Shorter Carp stack backtrace
by Anonymous Monk on Apr 16, 2010 at 02:28 UTC | |
by almut (Canon) on Apr 16, 2010 at 02:47 UTC |