Dave Rolsky > Log-Dispatch-2.26 > Log::Dispatch::Screen

Download:
Log-Dispatch-2.26.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  6
Open  3
View Bugs
Report a bug
Module Version: 2.26   Source  

NAME ^

Log::Dispatch::Screen - Object for logging to the screen

SYNOPSIS ^

  use Log::Dispatch;

  my $log =
      Log::Dispatch->new
          ( outputs =>
            [ [ 'Screen',
                min_level => 'debug',
                stderr    => 1,
                newline   => 1 ]
            ],
          );

  $log->alert("I'm searching the city for sci-fi wasabi");

DESCRIPTION ^

This module provides an object for logging to the screen (really STDOUT or STDERR).

Note that a newline will not be added automatically at the end of a message by default. To do that, pass newline => 1.

CONSTRUCTOR ^

The constructor takes the following parameters in addition to the standard parameters documented in Log::Dispatch::Output:

AUTHOR ^

Dave Rolsky, <autarch@urth.org>