Fix potential unparsed log case when log file are set in configuration file and not on command line
This commit is contained in:
parent
bd54505c80
commit
0916f06c20
|
@ -136,7 +136,7 @@ $SIG{'CHLD'} = 'DEFAULT';
|
|||
|
||||
my $t1;
|
||||
# Run parsing only if we have a log file or that we are not in rebuild mode
|
||||
if (!$rebuild || ($#logfile >= 0)) {
|
||||
if (!$rebuild || ($#{$sa->{LogFile}} >= 0)) {
|
||||
$sa->parseFile();
|
||||
if ($debug) {
|
||||
$t1 = Benchmark->new;
|
||||
|
|
Loading…
Reference in New Issue