The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Log::Fine::Logger - Main logging object

SYNOPSIS

Provides an object through which to log.

    use Log::Fine;
    use Log::Fine::Logger;

    # Get a new logging object
    my $log = Log::Fine->logger("mylogger");

    # Alternatively, specify a custom map
    my $log = Log::Fine->logger("mylogger", "Syslog");

    # Register a handle
    $log->registerHandle( Log::Fine::Handle::Console->new() );

    # Log a message
    $log->log(DEBG, "This is a really cool module!");

    # Illustrate use of the log skip API
    package Some::Package::That::Overrides::Log::Fine::Logger;

    use base qw( Log::Fine::Logger );

    sub log
    {
        my $self = shift;
        my $lvl  = shift;
        my $msg  = shift;

        # Do some custom stuff to message

        # Make sure the formatter logs the correct calling method.
        $self->incrSkip();
        $self->SUPER::log($lvl, $msg);
        $self->decrSkip();

    } # log()

DESCRIPTION

The Logger class is the main workhorse of the Log::Fine framework, providing the main "log" method from which to log. In addition, the Logger class provides means by which the developer can control the parameter passed to any caller() call so information regarding the correct stack frame is displayed.

decrSkip

Decrements the value of the skip attribute by one

Returns

The newly decremented value

incrSkip

Increments the value of the skip attribute by one

Returns

The newly incremented value

log

Logs the message at the given log level

Parameters

  • level

    Level at which to log

  • message

    Message to log

Returns

The object

registerHandle

Register one or more Log::Fine::Handle objects with the logging facility.

Parameters

  • handle

    Can either be a valid Log::Fine::Handle object or an array ref containing one or more Log::Fine::Handle objects

Returns

The object

skip

Getter/Setter for the objects skip attribute

See "caller" in perlfunc for details

Returns

The objects skip attribute

BUGS

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

AUTHOR

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

SEE ALSO

perl, Log::Fine, Log::Fine::Handle

COPYRIGHT & LICENSE

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