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