diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 10:54:49 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 10:54:49 -0700 |
commit | 24fc23950ce4844b81744f68ba8edc201eff495d (patch) | |
tree | d0a1667faa9de08256f3d04a6eb4610e30107af3 | |
parent | 7322f2afedcc2f427e997d1535a503613a83f088 (diff) |
improve error message
-rw-r--r-- | FS/FS/Cron/pay_batch.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Cron/pay_batch.pm b/FS/FS/Cron/pay_batch.pm index 432271dc3..9791749ee 100644 --- a/FS/FS/Cron/pay_batch.pm +++ b/FS/FS/Cron/pay_batch.pm @@ -58,7 +58,7 @@ sub pay_batch_submit { # warn the error and continue. rolling back the transaction once # we've started sending batches is bad. warn "error submitting batch ".$pay_batch->batchnum." to gateway '". - $gateway->label."\n$@\n"; + $gateway->label."': $@\n"; } } |