NAME
Log::ErrLogger - Log errors and error-like events
SYNOPSIS
use Log::ErrLogger;
# Send e-mail for ERROR or worse
my $mail_logger = new Log::ErrLogger::Mail(
SENSITIVITY => Log::ErrLogger::ERROR,
HEADERS => { To => "who@where.com",
Subject => "Errors occurred while running $0" });
# Log INFORMATIONAL or worse to a file
my $file_logger = new Log::ErrLogger::File(
FILE => "/home/who/what.err",
SENSITIVITY => Log::ErrLogger::INFORMATIONAL );
# Print a nice HTML error message
my $sub_logger = new Log::ErrLogger::Sub (
SENSITIVITY => FATAL,
SUB => sub { print STDOUT "
Oops!Please try again later.\n";
exit(0); } );
# Capture all output to STDERR as an UNEXPECTED error
my $stderr_logger = Log::ErrLogger::tie( Log::ErrLogger::UNEXPECTED );
# But don't actually print to STDERR
$stderr_logger->close;
# Log a warning
log_error( WARNING, "Danger, %s!", "Will Robinson" );
DESCRIPTION
Log::ErrLogger provides a means of logging errors and error-like events
(such as warnings and unexpected situations) when printing to STDERR
just will not do.
Error-like events are classified by a severity (see "ERROR SEVERITIES"
below). Programs instantiate error logging objects which can respond
differently to events. The objects have a sensitivity -- they will
respond to any event at least as severe as their sensitivity, and will
ignore any events that are less severe.
This module instantiates new __DIE__ and __WARN__ handlers that call
log_error( FATAL, die-message) and log_error( WARNING, warn-message),
respectively.
HISTORY
$Id: ErrLogger.pm,v 1.6 1999/09/23 21:37:24 dcw Exp $
$Log: ErrLogger.pm,v $ Revision 1.6 1999/09/23 21:37:24 dcw Incorporated
Tim Ayers suggestions
Revision 1.5 1999/09/13 17:59:48 dcw Copyright
Revision 1.4 1999/09/13 16:37:17 dcw Documentation
Revision 1.3 1999/09/01 14:28:28 dcw Backup file, export, autoflush
Revision 1.2 1999/08/31 17:18:39 dcw Log::ErrLogger::Sub
Revision 1.1 1999/08/30 21:28:43 dcw Initial
AUTHOR
David C. Worenklein
COPYRIGHT
Copyright 1999 Greenwich Capital Markets
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
ERROR SEVERITIES
The predefined severities are
DEBUGGING
INFORMATIONAL
UNEXPECTED
WARNING
ERROR
FATAL
They have numerical values from 1 to 6.
NON-METHOD SUBROUTINES
log_error( SEVERITY, FORMAT [,LIST] )
Log an error of the specified severity. The text of the message is
the output of sprintf FORMAT, ARGS. A carriage-return (\n) will be
appended if one is not supplied.
my $stderr_logger = tie( [SEVERITY] );
Tie the STDERR handle to the Log::ErrLogger module, so that any
output to STDERR will call log_error( $severity, output ).
If $severity is not specified, it will default to INFORMATIONAL.
METHODS
my $sensitivity = $logger->sensitivity;
Returns the sensitivty of an error logger object. Objects respond to
events that are at least as severe as their sensitivity. There are
two special sensitivities. Objects with a sensitivity of NONE do not
respond to any events. Objects with a sensitivity of ALL respond to
all events.
my $old_sensitivity = $logger->sensitivity( SENSITIVITY );
Sets the sensitivty of an error logger object. Objects respond to
events that are at least as severe as their sensitivity.
Returns what the sensitivity of the object used to be.
my $fh = $logger->file_handle;
Returns the IO::Handle associated with the error logger object. Not
all error loggers will have a file handle, but most will.
$logger->set_file_handle( HANDLE );
Associates the error logger object with the given (opened)
IO::Handle, and closes the old file handle that used to be
associated with the object (if there was one.)
The handle is set to autoflush, since buffering is usually a bad
idea on error loggers.
$logger->close;
Decommission the error logging object. log_error will no longer
invoke this object.
Note that this does NOT close the associated file handle. However,
if the error logging object has the only reference to the file
handle, and the program does not have any references to the error
logging object, the handle will have no references left and will be
destroyed.
$logger->log( SEVERITY, MESSAGE );
This is the method called by log_error, above. It prints