http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14906
Marcel de Rooy <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA --- Comment #3 from Marcel de Rooy <[email protected]> --- First chmod your opac logfile to 400. Second, try this test please: use Koha::Logger; my $logger = Koha::Logger->get({ interface => 'opac' }); $logger->warn('L4'); Without this patch, you will have no warning since the log is not writable. With your patch, the program will crash (on the following call on line 132 after calling _check_conf): Log::Log4perl->init_once($conf); The intention of the code in Logger.pm was just to prevent such a crash. This patch reintroduces it. Failed QA -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
