Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^4: Should I use carp/croak or warn/die (@CARP_NOT)

by LanX (Saint)
on May 30, 2018 at 22:29 UTC ( [id://1215513]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Should I use carp/croak or warn/die (@CARP_NOT)
in thread Should I use carp/croak or warn/die

I wouldn't ask if I knew.

> evaluated at compile-time.

nope that's obvious from the docs and from a simple test.

> you're simply blah-blahing here.

Look who's talking...

Anyway carp() seems to already do by default what I wanted. \o/

It doesn't report from the caller function but the caller package.

use strict; use warnings; use Data::Dump qw/pp dd/; TEST::first(); # <- line 6 #push @main::CARP_NOT, qw(TEST); # uncomment to see dynamic behaviour #TEST::first(); package TEST; use Carp; sub first { second(); } sub second { carp "some warning"; }

some warning at d:/Users/RolfLangsdorf/pm/carp_not.pl line 6.

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://1215513]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-24 01:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found