[Koha-bugs] [Bug 16312] Koha::Logger overload configuration for command line scripts verbosity levels

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Apr 20 19:22:32 CEST 2016


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16312

Olli-Antti Kivilahti <olli-antti.kivilahti at jns.fi> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #50471|0                           |1
        is obsolete|                            |

--- Comment #2 from Olli-Antti Kivilahti <olli-antti.kivilahti at jns.fi> ---
Created attachment 50472
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=50472&action=edit
Bug 16312 - Koha::Logger overload configuration for command line scripts
verbosity levels

To be able to set the -v|--verbose flags from the command line and still use
Koha::Logger, we must be able to overload/extend default appenders and log
levels
on a easy case-by-case basis directly from the Perl-code.

To deploy verbose mode in a commandline script, add the following code to your
cronjob/script:

use C4::Context;
use Koha::Logger;
C4::Context->setCommandlineEnvironment();
Koha::Logger->setConsoleVerbosity( 1 || -3 || 'WARN' || ... );

The module using the Koha::Logger must lazyLoad the module/package-level logger
using Koha::Logger->new(), so the overloads can be deployed.

See attached tests and perldoc for more info.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list