Log::Fine::Levels::Java - Provides levels correlating to java.utils.logging


NAME

Log::Fine::Levels::Java - Provides levels correlating to java.utils.logging


SYNOPSIS

Defines log level values and masks correlating to those provided by java.utils.logging

    use Log::Fine;
    use Log::Fine::Levels::Java;
    # grab a logging object
    my $log = Log::Fine->getLogger("foo1");
    # Note that FINER and SEVERE are provided by the
    # Log::Fine::Levels::Java object
    $log->log(FINER, "I'm not mad at you, I'm mad at the dirt");
    $log->log(SEVERE, "No more wire hangers ... EVER!");


DESCRIPTION

Log::Fine::Levels::Java provides logging and mask constants mimicking those provided by the java.utils.logging framework as provided by Java 1.5.0

Log Levels

Log::Fine::Levels::Java bases its log levels on those provided by java.util.logging.Levels. See http://java.sun.com/j2se/1.5.0/docs/api/java/util/logging/Level.html for further specifics.

Log Masks

Log masks can be exported for use in setting up individual handles (see the Log::Fine::Handle manpage). The following masks are exported into the caller's namespace:

See the Log::Fine::Handle manpage for more information.


CONSTRUCTOR

new

Returns a newly constructed object


SEE ALSO

perl, syslog, the Log::Fine manpage, the Log::Fine::Levels manpage, the Sys::Java manpage, http://java.sun.com/j2se/1.5.0/docs/api/java/util/logging/Level.html


AUTHOR

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


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. 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::Levels::Java

You can also look for information at:


REVISION INFORMATION

  $Id: a11959b24a1d2826acb21d27f710daf641f68077 $


COPYRIGHT & LICENSE

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

 Log::Fine::Levels::Java - Provides levels correlating to java.utils.logging