Remove spurious debugging print to STDERR

This commit is contained in:
Bradley M. Kuhn 2024-11-03 15:49:30 -08:00
parent 10523a2285
commit 07aea9ba74

View file

@ -1998,7 +1998,6 @@ sub _readLedgerData($) {
warn "Invalid line in line in ledgerFH output:\n $line" warn "Invalid line in line in ledgerFH output:\n $line"
unless $line =~ /^\s*([^\d]+)\s+([\d\-]+)\s+(\S*)\s+\$?\s*(\-?\s*[\d,\.]+)\s*$/; unless $line =~ /^\s*([^\d]+)\s+([\d\-]+)\s+(\S*)\s+\$?\s*(\-?\s*[\d,\.]+)\s*$/;
my($type, $date, $entityId, $amount) = ($1, $2, $3, $4); my($type, $date, $entityId, $amount) = ($1, $2, $3, $4);
print STDERR "$type, $date, $entityId, $amount\n";
next unless defined $entityId and $entityId !~ /^\s*$/; next unless defined $entityId and $entityId !~ /^\s*$/;
if (defined $self->{programTypeSearch}) { if (defined $self->{programTypeSearch}) {
if ($type =~ /$self->{programTypeSearch}{annual}/) { if ($type =~ /$self->{programTypeSearch}{annual}/) {