Skip to content
This repository was archived by the owner on Jan 25, 2018. It is now read-only.

Commit baa623b

Browse files
committed
Reveal rogue transaction status (bug 900147)
1 parent 5dd298a commit baa623b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

webpay/pay/views.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@ def wait_to_start(request):
210210
trans = {'status': None}
211211

212212
if trans['status'] in constants.STATUS_ENDED:
213-
log.exception('Attempt to restart finished transaction.')
213+
log.exception('Attempt to restart finished transaction {0} '
214+
'with status {1}'.format(trans_id, trans['status']))
214215
return _error(request, msg=_('Transaction has already ended.'))
215216

216217
if trans['status'] == constants.STATUS_PENDING:

0 commit comments

Comments
 (0)