NAME

Log::Fine::Formatter::Basic - Default logging formatter

SYNOPSIS

Formats log messages for output in a basic format, suitable for most applications.

use Log::Fine::Formatter::Basic;
use Log::Fine::Handle::Console;

# instantiate a handle
my $handle = Log::Fine::Handle::Console->new();

# instantiate a formatter
my $formatter = Log::Fine::Formatter::Basic
    ->new( name             => 'basic0',
           timestamp_format => "%y-%m-%d %h:%m:%s" );

# set the formatter
$handle->setFormatter( formatter => $formatter );

DESCRIPTION

The basic formatter provides logging in the following format:

<[TIMESTAMP] <LEVEL> <MESSAGE>>

Please note that this is the default format.

METHODS

format($lvl, $msg, $skip)

Returns the formatted message as follows:

[TIMESTAMP] LEVEL MESSAGE

SEE ALSO

perl, Log::Fine::Formatter

AUTHOR

Christopher M. Fuhrman, <cfuhrman at panix.com>

BUGS

Please report any bugs or feature requests to bug-log-fine-formatter-basic 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:

REVISION INFORMATION

$Id: Basic.pm 76 2008-06-06 16:36:28Z cfuhrman $

COPYRIGHT & LICENSE

Copyright (c) 2008 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.