Log::Dispatch::Screen - Object for logging to the screen
use Log::Dispatch::Screen; my $screen = Log::Dispatch::Screen->new( name => 'screen', min_level => 'debug', stderr => 1 ); $screen->log( level => 'alert', message => "I'm searching the city for sci-fi wasabi\n" );
This module provides an object for logging to the screen (really STDOUT or STDERR).
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>