NAME
Log::Fine::Formatter::Detailed - Formatter for detailed logging
SYNOPSIS
Formats log messages for output in a detailed format.
use Log::Fine::Formatter::Detailed;
use Log::Fine::Handle::Console;
# instantiate a handle
my $handle = Log::Fine::Handle::Console->new();
# instantiate a formatter
my $formatter = Log::Fine::Formatter::Detailed
->new( name => 'detail0',
timestamp_format => "%y-%m-%d %h:%m:%s" );
# set the formatter
$handle->setFormatter( formatter => $formatter );
DESCRIPTION
The detailed formatter logs messages in two different formats, depending on where the log message came from.
If the log message came from a particular class (e.g. MyModule.pm
) the detailed formatter will format as follows:
[TIMESTAMP] <LEVEL> (<Package>::Method():<Line Number>) <MESSAGE>
Otherwise, the formatter will return a slightly more basic format:
[TIMESTAMP] <LEVEL> (<Script Name>:<Line Number>) <MESSAGE>
METHODS
format($lvl, $msg, $skip)
Returns the formatted message as follows:
[TIMESTAMP] <LEVEL> (<Package>::Method():<Line Number>) <MESSAGE>
or
[TIMESTAMP] <LEVEL> (<Script Name>:<Line Number>) <MESSAGE>
SEE ALSO
AUTHOR
Christopher M. Fuhrman, <cfuhrman at panix.com>
BUGS
Please report any bugs or feature requests to bug-log-fine-formatter-detailed at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Log-Fine. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Log::Fine
You can also look for information at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
Search CPAN
REVISION INFORMATION
$Id: Detailed.pm 121 2009-02-04 23:46:05Z cfuhrman $
COPYRIGHT & LICENSE
Copyright (c) 2008, 2009 Christopher M. Fuhrman, All rights reserved.
This program is free software licensed under the...
The BSD License
The full text of the license can be found in the LICENSE file included with this module.