Help for this page

Select Code to Download


  1. or download this
    my $conf = q(                                                         
    +                                  
                log4perl.logger.testLog = ).$logging_level.q(, logApp
    ...
    Log::Log4perl->init( \$conf );                                        
    +                                  
    use testPackage;                                                      
    +                                  
    &testPackage::foo();
    
  2. or download this
    package testPackage;
    
    ...
        $logger->info("blah");
    }
    1;