Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Should I use carp/croak or warn/die

by ikegami (Patriarch)
on May 30, 2018 at 15:50 UTC ( [id://1215476]=note: print w/replies, xml ) Need Help??


in reply to Should I use carp/croak or warn/die

I've sometimes used Carp, but in general found that I didn't really need the more extensive output

carp and croak don't make the output more extensive; they just report the caller to be the source of the error instead of the line where the error was found.

$ perl -Mlib=. -MMod -e'Mod::foo();' Insufficient arguments at Mod.pm line 5. # carp Insufficient arguments at -e line 1. # warn

They also have the advantage of being able to produce a full stacktrace on demand (e.g. PERL5OPT=-MCarp::Always). ...Oops, that also works for warn and die.

$ PERL5OPT=-MCarp::Always perl -Mlib=. -MMod -e'Mod::foo();' Insufficient arguments at Mod.pm line 5. Mod::foo() called at -e line 1 Insufficient arguments at Mod.pm line 6. Mod::foo() called at Mod.pm line 6. Mod::foo() called at -e line 1

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (4)
As of 2024-04-25 16:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found