Log::Dispatch::Output - Base class for all Log::Dispatch::* object
package Log::Dispatch::MySubclass; use Log::Dispatch::Output; use base qw( Log::Dispatch::Output ); sub new { my $proto = shift; my $class = ref $proto || $proto; my %p = @_; my $self = bless {}, $class $self->_basic_init(%p); # Do more if you like } sub log_message { my $self = shift; my %p = @_; # Do something with message in $p{message} }
This module is the base class from which all Log::Dispatch::* objects should be derived.
This must be overridden in a subclass. Takes the following parameters:
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. If they do not return
the message then you will get no output. Make sure to return the
message!
log()
method with the log level of
the message to be logged as an argument. It returns a boolean value
indicating whether or not the message should be logged by this
particular object. The log()
method will not process the message
if the return value is false.
This class should be used as the base class for all logging objects
you create that you would like to work under the Log::Dispatch
architecture. Subclassing is fairly trivial. For most subclasses, if
you simply copy the code in the SYNOPSIS and then put some
functionality into the log_message
method then you should be all
set. Please make sure to use the _basic_init
method as directed.
Dave Rolsky, <autarch@urth.org>