Fix incorrect verbosity.
There was a logic error in the test for this verbose message.
This commit is contained in:
parent
8349b9610b
commit
e9d0a8b857
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ while (1) {
|
||||||
open(my $fifoFH, ">", $fifoFileName);
|
open(my $fifoFH, ">", $fifoFileName);
|
||||||
print STDERR "and beginning write to it." if $VERBOSE > 1;
|
print STDERR "and beginning write to it." if $VERBOSE > 1;
|
||||||
while (my $line = <$beancountFH>) {
|
while (my $line = <$beancountFH>) {
|
||||||
print STDERR "." if (++$cnt % 100) and ($VERBOSE > 1);
|
print STDERR "." unless ($cnt++ % 500) or ($VERBOSE <= 1);
|
||||||
print $fifoFH $line;
|
print $fifoFH $line;
|
||||||
}
|
}
|
||||||
close $beancountFH;
|
close $beancountFH;
|
||||||
|
|
Loading…
Reference in a new issue