Skip to content

Commit

Permalink
Merge pull request #473 from unreturned/fix_471
Browse files Browse the repository at this point in the history
Possible fix for #471
  • Loading branch information
jmrenouard committed Jan 23, 2020
2 parents b5ffe58 + e7609d7 commit 094f16f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysqltuner.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1288,8 +1288,8 @@ sub log_file_recommendations {
while ( my $logLi = <$fh> ) {
chomp $logLi;
$numLi++;
debugprint "$numLi: $logLi" if $logLi =~ /warning|error/i;
$nbErrLog++ if $logLi =~ /error/i;
debugprint "$numLi: $logLi" if $logLi =~ /warning|error/i and $logLi !~ /Logging to/;
$nbErrLog++ if $logLi =~ /error/i and $logLi !~ /Logging to/;
$nbWarnLog++ if $logLi =~ /warning/i;
push @lastShutdowns, $logLi
if $logLi =~ /Shutdown complete/ and $logLi !~ /Innodb/i;
Expand Down

0 comments on commit 094f16f

Please sign in to comment.