summaryrefslogtreecommitdiff
path: root/talerbank/app/middleware.py
diff options
context:
space:
mode:
Diffstat (limited to 'talerbank/app/middleware.py')
-rw-r--r--talerbank/app/middleware.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/talerbank/app/middleware.py b/talerbank/app/middleware.py
index 21c747f..980b87b 100644
--- a/talerbank/app/middleware.py
+++ b/talerbank/app/middleware.py
@@ -99,7 +99,7 @@ class ExceptionMiddleware:
# @param request Django-specific HTTP request.
# @param exception the exception raised from the bank.
def process_exception(self, request, exception):
- LOGGER.warning(str(exception))
+ LOGGER.error(repr(exception))
if not hasattr(exception, "taler_error_code"):
exception = UnhandledException()