Add pay date to error output.

This commit is contained in:
Bradley M. Kuhn 2018-07-22 15:22:25 -07:00
parent f00819a174
commit 467522f331

View file

@ -205,7 +205,8 @@ while (my $file = readdir $dh) {
# Check to see if this payment was already made
my $thisPayDate = PaymentDateByTicket($ticket, $PAYMENT_NUMBER);
if (defined $thisPayDate) {
print STDERR "\"$file\": \"$ticket\": Skipped: payment $PAYMENT_NUMBER was already made";
print STDERR "\"$file\": \"$ticket\": Skipped: payment $PAYMENT_NUMBER",
" was already made on \"$thisPayDate\"";
if ($pass) {
print STDERR ".\n";
} else {