in reply to carp always showing stacktrace
From Carp:BEGIN {$Carp::Verbose=0; $Carp::CarpLevel = 1; #<-- add this (for your demo) };
6. $Carp::CarpLevel can be set to skip a fixed number of additional call levels. Using this is not recommended because it is very difficult to get it to behave correctly.So, you might need to use something like local $Carp::CarpLevel
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: carp always showing stacktrace
by LanX (Saint) on Jul 20, 2020 at 18:29 UTC |