| Log::Dispatch::ApacheLog - Object for logging to Apache::Log objects |
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.
new(%p)( 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>
| Log::Dispatch::ApacheLog - Object for logging to Apache::Log objects |