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



NAME

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


VERSION

version 2.54


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 the Log::Dispatch::Output manpage:


AUTHOR

Dave Rolsky <autarch@urth.org>


COPYRIGHT AND LICENSE

This software is Copyright (c) 2016 by Dave Rolsky.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)
 Log::Dispatch::File - Object for logging to files