From a82b096a4064668bdf700b09773156503966f58d Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 27 Apr 2020 13:30:24 +0100 Subject: [PATCH] Bug 25245: (follow-up) Use Koha::Logger Update script to use Koha::Logger to capture method failures. --- misc/cronjobs/plugins_nightly.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/misc/cronjobs/plugins_nightly.pl b/misc/cronjobs/plugins_nightly.pl index 26e3088b0f..40e2ca2aab 100755 --- a/misc/cronjobs/plugins_nightly.pl +++ b/misc/cronjobs/plugins_nightly.pl @@ -2,9 +2,12 @@ use Modern::Perl; +use Koha::Logger; use Koha::Script -cron; + cronlogaction(); +my $logger = Koha::Logger->get(); if ( C4::Context->config("enable_plugins") ) { my @plugins = Koha::Plugins->new->GetPlugins( { @@ -17,7 +20,7 @@ if ( C4::Context->config("enable_plugins") ) { $plugin->cronjob_nightly(); } catch { - warn "$_"; + $logger->warn("$_"); }; } } -- 2.20.1