Log::Dispatch::ApacheLog - Object for logging to Apache::Log objects
  use Log::Dispatch::ApacheLog;
  my $handle = Log::Dispatch::ApacheLog->new( name      => 'apache log',
                                              min_level => 'emerg',
                                              apache    => $r );
  $handle->log( level => 'emerg', message => 'Kaboom' );
This module allows you to pass messages Apache's log object, represented by the Apache::Log class.
This method takes a hash of parameters. The following options are valid:
This parameter may be a single subroutine reference or an array reference of subroutine references. These callbacks will be called in the order they are given and passed a hash containing the following keys:
( message => $log_message, level => $log_level )
The callbacks are expected to modify the message and then return a
single scalar containing that modified message.  These callbacks will
be called when either the log or log_to methods are called and
will only be applied to a given message once.
log() method
(in Log::Dispatch::Output).
Dave Rolsky, <autarch@urth.org>