Help for this page

Select Code to Download


  1. or download this
     ...
     ThreadsPerChild 100
    ...
     ...
     LogLevel warn
     ...
    
  2. or download this
     
      *CORE::GLOBAL::warn = \&Apache2::ServerRec::warn;
    
  3. or download this
      local $SIG{__WARN__} = \&Apache2::ServerRec::warn;
    
  4. or download this
      use Apache2::Const -compile => qw(:log);
      use APR::Const     -compile => qw(ENOTIME SUCCESS);
    ...
       $s->log_serror(Apache2::Log::LOG_MARK, Apache2::Const::LOG_ERR,
               APR::Const::SUCCESS, @msg);
      }