Help for this page

Select Code to Download


  1. or download this
    Module id = Log::Log4perl  INST_VERSION 0.41
    
  2. 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");
    
  3. or download this
    my $log = MyLogger::->new("database");
    sub do_some_logging { $log->warn("This should appear in DATABASE log."
    +); }
    
  4. or download this
    [empty]
    
  5. 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