summaryrefslogtreecommitdiffstats
path: root/custodia/httpd/server.py
diff options
context:
space:
mode:
Diffstat (limited to 'custodia/httpd/server.py')
-rw-r--r--custodia/httpd/server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/custodia/httpd/server.py b/custodia/httpd/server.py
index 656015c..24ac71b 100644
--- a/custodia/httpd/server.py
+++ b/custodia/httpd/server.py
@@ -37,7 +37,7 @@ class HTTPError(Exception):
self.code = code if code is not None else 500
self.mesg = message
errstring = '%d: %s' % (self.code, self.mesg)
- logger.exception(errstring)
+ logger.debug(errstring)
super(HTTPError, self).__init__(errstring)