From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910 package CarpingModule;use Log::Log4perl::Tiny qw< :easy :dead_if_first >;sub somesub { LOGCARP "sent from somesub in " . __PACKAGE__; anothersub();}sub anothersub { LOGCROAK "sent from anothersub in " . __PACKAGE__;}1;
package
CarpingModule;
use
Log::Log4perl::Tiny
qw< :easy :dead_if_first >
;
sub
somesub {
LOGCARP
"sent from somesub in "
. __PACKAGE__;
anothersub();
}
anothersub {
LOGCROAK
"sent from anothersub in "
1;