- or download this
Module id = Log::Log4perl INST_VERSION 0.41
- or download this
my $log = MyLogger::->new("apache");
$log->fatal("This should be in the APACHE log");
my $retval = database::do_some_logging();
$log->fatal("This should be in the APACHE log");
- or download this
my $log = MyLogger::->new("database");
sub do_some_logging { $log->warn("This should appear in DATABASE log."
+); }
- or download this
[empty]
- or download this
FATAL> This should be in the APACHE log
WARN> This should appear in DATABASE log.
FATAL> This should be in the APACHE log