Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Carp::Clan

by salva (Canon)
on Jun 08, 2006 at 13:58 UTC ( [id://554280]=note: print w/replies, xml ) Need Help??


in reply to Carp::Clan

Carp provides the @CARP_NOT feature for that.

Replies are listed 'Best First'.
Re^2: Carp::Clan
by Aristotle (Chancellor) on Jun 08, 2006 at 20:58 UTC

    The documentation of that feature is too curt and the code is withstanding my attempts to understand it in a hurry. How does one employ that?

    Makeshifts last the longest.

      you just push there the names of the packages you want to skip when calling carp, croak, etc.

      For instance:

      #!/usr/bin/perl package Foo; sub foo { Bar::bar() } package Bar; use Carp; our @CARP_NOT = qw(Foo); sub bar { croak "hello" } package main; Foo::foo();
      prints...
      hello at /tmp/t.pl line 12

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-26 02:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found