in reply to carp always showing stacktrace

BEGIN {$Carp::Verbose=0; $Carp::CarpLevel = 1; #<-- add this (for your demo) };
From Carp:
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=1+=$whatever; ...

Replies are listed 'Best First'.
Re^2: carp always showing stacktrace
by LanX (Saint) on Jul 20, 2020 at 18:29 UTC
    Thanks, I'm using my own solution from the update now.

    It's shorter and easier than fiddling with Carp.

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery