View | Details | Raw Unified | Return to bug 39154
Collapse All | Expand All

(-)a/about.pl (-1 / +3 lines)
Lines 826-832 sub log4perl_check { Link Here
826
        for my $line (@lines) {
826
        for my $line (@lines) {
827
            next unless $line =~ m|log4perl\.appender\.\w+\.filename=(.*)|;
827
            next unless $line =~ m|log4perl\.appender\.\w+\.filename=(.*)|;
828
            my $file = $1;
828
            my $file = $1;
829
            if ( !-w $file ) {
829
            if ( $file =~ /sip\.log$/ ) {
830
                push @log4perl_errors, 'sip_log_still_found';
831
            } elsif ( !-w $file ) {
830
                push @log4perl_errors, 'logfile_not_writable';
832
                push @log4perl_errors, 'logfile_not_writable';
831
833
832
                #NOTE: An unwritable logfile blocks plack.psgi. So you wont reach this script. (BZ 39155)
834
                #NOTE: An unwritable logfile blocks plack.psgi. So you wont reach this script. (BZ 39155)
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-1 / +2 lines)
Lines 449-454 Link Here
449
                        <span>One of the logfiles listed in the config file is not writable.</span>
449
                        <span>One of the logfiles listed in the config file is not writable.</span>
450
                    [% CASE 'cannot_init_module' %]
450
                    [% CASE 'cannot_init_module' %]
451
                        <span>The Koha::Logger module cannot be initiated correctly (check the log file).</span>
451
                        <span>The Koha::Logger module cannot be initiated correctly (check the log file).</span>
452
                    [% CASE 'sip_log_still_found' %]
453
                        <span>Config file log4perl.conf still refers to sip.log (instead of sip-output.log).</span>
452
                    [% CASE %]
454
                    [% CASE %]
453
                        <span>Unknown error '[% e | html %]'.</span>
455
                        <span>Unknown error '[% e | html %]'.</span>
454
                    [% END %]
456
                    [% END %]
455
- 

Return to bug 39154