Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: carp always showing stacktrace

by Perlbotics (Archbishop)
on Jul 20, 2020 at 16:44 UTC ( [id://11119554]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11119554]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (7)
As of 2024-04-19 08:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found