Add pay date to error output.
This commit is contained in:
parent
f00819a174
commit
467522f331
1 changed files with 2 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue