Bug 14167: (QA followup) Adjust category handling in Koha::Logger
[koha.git] / Koha / Logger.pm
1 package Koha::Logger;
2
3 # Copyright 2015 ByWater Solutions
4 # kyle@bywatersolutions.com
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 3 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 =head1 NAME
22
23 Koha::Log
24
25 =head1 SYNOPSIS
26
27   use Koha::Log;
28
29 =head1 FUNCTIONS
30
31 =cut
32
33 use Modern::Perl;
34
35 use Log::Log4perl;
36 use Carp;
37
38 use C4::Context;
39
40 BEGIN {
41     Log::Log4perl->wrapper_register(__PACKAGE__);
42
43     my $conf;
44     if ( exists $ENV{"LOG4PERL_CONF"} and $ENV{'LOG4PERL_CONF'} and -s $ENV{"LOG4PERL_CONF"} ) {
45
46         # Check for web server level configuration first
47         $conf = $ENV{"LOG4PERL_CONF"};
48     }
49     else {
50         # If no web server level config exists, look in the koha conf file for one
51         $conf = C4::Context->config("log4perl_conf");
52     }
53
54     Log::Log4perl->init_once($conf);
55 }
56
57 =head2 get
58
59     Returns a log4perl object.
60     Category and interface parameter are optional.
61     Normally, the category should follow the current package and the interface
62     should be set correctly via C4::Context.
63
64 =cut
65
66 sub get {
67     my ( $class, $category, $interface ) = @_;
68     $interface ||= C4::Context->interface();
69     $category = caller if !$category;
70     return Log::Log4perl->get_logger( $interface. '.'. $category );
71 }
72
73 =head1 AUTHOR
74
75 Kyle M Hall, E<lt>kyle@bywatersolutions.comE<gt>
76
77 =cut
78
79 1;
80
81 __END__