NAME¶
Log::Dispatch::FileWriteRotate - Log to files that archive/rotate themselves, w/
  File::Write::Rotate
VERSION¶
version 0.02
SYNOPSIS¶
 use Log::Dispatch::FileWriteRotate;
 my $file = Log::Dispatch::FileWriteRotate(
     min_level => 'info',
     # will be passed to File::Write::Rotate
     dir       => '/var/log',
     prefix    => 'myapp',
     suffix    => '.log',
     period    => 'monthly',
     size      => 25*1024*1024,
     histories => 12,
 );
 $file->log(level => 'info', message => "Your comment\n");
DESCRIPTION¶
This module functions similarly to Log::Dispatch::FileRotate, but uses
  File::Write::Rotate as backend, thus interoperates more easily with other
  modules which use File::Write::Rotate as backend, e.g.
  Tie::Handle::FileWriteRotate or Process::Govern.
FUNCTIONS¶
None are exported by default, but they are exportable.
METHODS¶
new(%args)¶
Constructor. This method takes a hash of parameters. The following options are
  valid: "min_level" and "max_level" (see Log::Dispatch
  documentation); "dir", "prefix", "suffix",
  "period", "size", and "histories" (see
  File::Write::Rotate).
log_message(message => STR)¶
Send a message to the appropriate output. Generally this shouldn't be called
  directly but should be called through the "log()" method (in
  LLog::Dispatch::Output>).
SEE ALSO¶
Log::Dispatch
File::Write::Rotate
HOMEPAGE¶
Please visit the project's homepage at
  <
https://metacpan.org/release/Log-Dispatch-FileWriteRotate>.
SOURCE¶
Source repository is at
  <
https://github.com/sharyanto/perl-Log-Dispatch-FileWriteRotate>.
BUGS¶
Please report any bugs or feature requests on the bugtracker website
  "/rt.cpan.org/Public/Dist/Display.html?Name=Log-Dispatch-FileWriteR
  otate" in https:
When submitting a bug or request, please include a test-file or a patch to an
  existing test-file that illustrates the bug or desired feature.
AUTHOR¶
Steven Haryanto <stevenharyanto@gmail.com>
COPYRIGHT AND LICENSE¶
This software is copyright (c) 2013 by Steven Haryanto.
This is free software; you can redistribute it and/or modify it under the same
  terms as the Perl 5 programming language system itself.