- or download this
41 $self=shift
- or download this
use LogMessages qw(/path/to/logfile);
- or download this
my %logfile;
...
my $class = shift;
$logfile{ +caller} = @_ ? shift : "/tmp/logfile.$$";
};
- or download this
sub _log : ATTR(CODE) {
my ($pkg, $sym, $code) = @_;
...
};
}
}
- or download this
sub log_message {
my $logfile = shift;
...
print $LOGFILE @_;
}
}