NAME
Log::Log4cplus - Perl logger via Log4cplus
VERSION
Version 0.001
SYNOPSIS
use Log::Log4cplus;
my $logger = Log::Log4cplus->new(config_file => "/path/to/config.properties");
$logger->log_info("main", "Lib::Log4cplus works great!");
METHODS
new
my $logger = Log::Log4cplus->new(name => "foo", config_file => "foo.properties");
Creates a new logger which is named foo
and reads the configuration from foo.properties
.
The different ways to configure Lib::Log4cplus backend are:
config_basic
- basic configuration, nothing individual. See http://log4cplus.sourceforge.net/docs/html/classlog4cplus_1_1BasicConfigurator.html for more details.config_file
- configuration based on properties read from specified file See http://log4cplus.sourceforge.net/docs/html/classlog4cplus_1_1PropertyConfigurator.html for more details.config_string
- configuration based on properties parsed from given string See http://log4cplus.sourceforge.net/docs/html/classlog4cplus_1_1PropertyConfigurator.html for more details.
emergency
$logger->emerg($message)
Processes log $message
using severity FATAL
.
is_emergency
say "logging fatal messages is enabled" if $logger->is_emergency
Tell whether fatal log level is enabled or not.
panic
$logger->panic($message)
Processes log $message
using severity FATAL
.
is_panic
say "logging fatal messages is enabled" if $logger->is_panic
Tell whether fatal log level is enabled or not.
fatal
$logger->fatal($message)
Processes log $message
using severity FATAL
.
is_fatal
say "logging fatal messages is enabled" if $logger->is_fatal
Tell whether fatal log level is enabled or not.
critical
$logger->critical($message)
Processes log $message
using severity FATAL
.
is_critical
say "logging fatal messages is enabled" if $logger->is_critical
Tell whether fatal log level is enabled or not.
error
$logger->error($message)
Processes log $message
using severity ERROR
.
is_error
say "logging error messages is enabled" if $logger->is_error
Tell whether error log level is enabled or not.
warning
$logger->warning($message)
Processes log $message
using severity WARN
.
is_warning
say "logging warning messages is enabled" if $logger->is_warning
Tell whether warning log level is enabled or not.
notice
$logger->notice($message)
Processes log $message
using severity (INFO+WARN) / 2
.
is_notice
say "logging notice messages is enabled" if $logger->is_notice
Tell whether notice log level is enabled or not.
basic
$logger->basic($message)
Processes log $message
using severity INFO+1
.
is_basic
say "logging basic messages is enabled" if $logger->is_basic
Tell whether basic log level is enabled or not.
info
$logger->info($message)
Processes log $message
using severity INFO
.
is_info
say "logging info messages is enabled" if $logger->is_info
Tell whether info log level is enabled or not.
debug
$logger->debug($message)
Processes log $message
using severity DEBUG
.
is_debug
say "logging debug messages is enabled" if $logger->is_debug
Tell whether debug log level is enabled or not.
trace
$logger->trace($message)
Processes log $message
using severity TRACE
.
is_trace
say "logging trace messages is enabled" if $logger->is_trace
Tell whether trace log level is enabled or not.
AUTHOR
Jens Rehsack, <rehsack at cpan.org>
BUGS
Please report any bugs or feature requests to bug-lib-log4cplus at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Lib-Log4cplus. 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 Lib::Log4cplus
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
Copyright 2018 Jens Rehsack.
This program is free software; you can redistribute it and/or modify it under the terms of the the Artistic License (2.0). You may obtain a copy of the full license at:
http://www.perlfoundation.org/artistic_license_2_0
Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license.
If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license.
This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder.
This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed.
Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.