Dave Rolsky > Log-Dispatch > Log::Dispatch::File

Download:
Log-Dispatch-2.26.tar.gz

Dependencies

Annotate this POD (1)

CPAN RT

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

NAME ^

Log::Dispatch::File - Object for logging to files

SYNOPSIS ^

  use Log::Dispatch;

  my $log =
      Log::Dispatch->new
          ( outputs =>
                [ [ 'File',
                    min_level => 'info',
                    filename  => 'Somefile.log',
                    mode      => '>>',
                    newline   => 1 ]
                ],
          );

  $log->emerg("I've fallen and I can't get up");

DESCRIPTION ^

This module provides a simple object for logging to files under the Log::Dispatch::* system.

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>