From e43f91b035d04089a6106a540127c1642d3c3eee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joonas=20Kylm=C3=A4l=C3=A4?= Date: Tue, 25 Aug 2020 12:10:20 +0000 Subject: [PATCH] Bug 16357: (QA follow-up) Only initialize Log4perl module Koha::Logger->get was setting up some extra variables which are not used nor needed for the Plack::Middleware::Log4perl middleware to work. According to documentation at https://metacpan.org/pod/Plack::Middleware::Log4perl#SYNOPSIS only running Log::Log4perl::init, enabling Log4Perl middleware and setting up the logging category is enough. Koha::Logger->_init runs the Log::Log4perl::init and enabling and setting category is handled directly in plack.psgi. Signed-off-by: Arthur Suzuki Signed-off-by: Martin Renvoize --- debian/templates/plack.psgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/templates/plack.psgi b/debian/templates/plack.psgi index 32d17940ae..7bfb34fb68 100644 --- a/debian/templates/plack.psgi +++ b/debian/templates/plack.psgi @@ -66,7 +66,7 @@ my $apiv1 = builder { $server->to_psgi_app; }; -Koha::Logger->get; +Koha::Logger->_init; builder { enable "ReverseProxy"; -- 2.20.1