File: b.pm

package info (click to toggle)
liblog-fast-perl 2.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 164 kB
  • sloc: perl: 324; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 193 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package a::b;
use warnings;
use strict;

my $LOG = Log::Fast->global();


sub B {
    $LOG->ERR('in a::b::B');
}

sub call {
    my $func = shift;
    no strict 'refs';
    $func->(@_);
}


1;