mirror of
https://github.com/darold/squidanalyzer.git
synced 2025-08-15 23:18:14 +02:00
Fix typo in debug messages
This commit is contained in:
parent
72a60e5dd4
commit
c0737cfc54
@ -704,7 +704,7 @@ sub parseFile
|
||||
$curtime = $self->look_for_timestamp($line);
|
||||
if ($curtime) {
|
||||
if ($hist_time > $curtime) {
|
||||
print STDERR "DEBUG: this file will not been parsed: $lfile, size lower than expected and $curtime is lower than history time $self->{history_time}.\n" if (!$self->{QuietMode});
|
||||
print STDERR "DEBUG: this file will not be parsed: $lfile, size lower than expected and $curtime is lower than history time $self->{history_time}.\n" if (!$self->{QuietMode});
|
||||
$line = 'NOK';
|
||||
last;
|
||||
}
|
||||
@ -732,7 +732,7 @@ sub parseFile
|
||||
if ($curtime) {
|
||||
if ($curtime < $hist_time) {
|
||||
my $tmp_time = CORE::localtime($curtime);
|
||||
print STDERR "DEBUG: this file will not been parsed: $lfile, line after offset is older than expected: $curtime < $hist_time.\n" if (!$self->{QuietMode});
|
||||
print STDERR "DEBUG: this file will not be parsed: $lfile, line after offset is older than expected: $curtime < $hist_time.\n" if (!$self->{QuietMode});
|
||||
$line = 'NOK';
|
||||
last;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user