summaryrefslogtreecommitdiff
path: root/talerbank/app/views.py
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-02-13 15:49:05 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-02-13 15:49:05 +0100
commita3edc34f2d8cbdc908d1ba511d43b1f239ad9196 (patch)
treeb8de8a0b3db23a394e95e2e3ae09f44f1759af24 /talerbank/app/views.py
parent6789efe6f10806185cd0511a3d031804b12808fd (diff)
downloadbank-a3edc34f2d8cbdc908d1ba511d43b1f239ad9196.tar.gz
bank-a3edc34f2d8cbdc908d1ba511d43b1f239ad9196.tar.bz2
bank-a3edc34f2d8cbdc908d1ba511d43b1f239ad9196.zip
Fix #5561.
Diffstat (limited to 'talerbank/app/views.py')
-rw-r--r--talerbank/app/views.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/talerbank/app/views.py b/talerbank/app/views.py
index 53954ad..b16e727 100644
--- a/talerbank/app/views.py
+++ b/talerbank/app/views.py
@@ -593,11 +593,11 @@ def withdraw_nojs(request):
def wire_transfer(amount, debit_account, credit_account,
subject):
- LOGGER.info("%s => %s, %s, %s" %
- (debit_account.account_no,
- credit_account.account_no,
- amount.stringify(2),
- subject))
+ LOGGER.debug("%s => %s, %s, %s" %
+ (debit_account.account_no,
+ credit_account.account_no,
+ amount.stringify(2),
+ subject))
if debit_account.pk == credit_account.pk:
LOGGER.error("Debit and credit account are the same!")
raise SameAccountException()