trusty (3) Paranoid::Log::File.3pm.gz

Provided by: libparanoid-perl_0.34-1_all bug

NAME

       Paranoid::Log::File - File Logging Functions

VERSION

       $Id: File.pm,v 0.83 2010/04/15 23:23:28 acorliss Exp $

SYNOPSIS

         use Paranoid::Log;

         enableFacility('events', 'file', 'debug', '+', $filename);

DESCRIPTION

       This module logs messages to the log files, and is safe for use with forked children logging to the same
       files.  Each child will open their own filehandles and use advisory locking for writes.

       This module should not be used directly, Paranoid::Log should be your exclusive interface for logging.

SUBROUTINES/METHODS

       NOTE:  Given that this module is not intended to be used directly nothing is exported.

   init
   log
   remove
   dump

DEPENDENCIES

       o   Fcntl

       o   Paranoid::Debug

       o   Paranoid::Filesystem

       o   Paranoid::Input

SEE ALSO

       o   Paranoid::Log

BUGS AND LIMITATIONS

       This isn't a high performance module when dealing with a high logging rate with high concurrency.  This
       is due to the advisory locking requirement and the seeks to the end of the file with every message.  This
       facility is intended as a kind of lowest-common demoninator for programs that need some kind of logging
       capability.

AUTHOR

       Arthur Corliss (corliss@digitalmages.com)

       This software is licensed under the same terms as Perl, itself.  Please see http://dev.perl.org/licenses/
       for more information.

       (c) 2005, Arthur Corliss (corliss@digitalmages.com)