Change client-side error logging to debug

A client-side error (that is something akin to a 4xx HTTP response
code) is something that is common, it is not something that should
cause WARNING level log messages. This change switches to using
DEBUG so that it is easier to filter out the noisy messages.

Change-Id: I0ce0c7afa883612fd8a184b4244991f1e2a0e19d
This commit is contained in:
Chris Dent 2015-04-09 14:04:32 +01:00
parent 80e0c2ad9a
commit 94cd1751c7

View File

@ -209,7 +209,7 @@ def format_exception(excinfo, debug=False):
else str(error)
r = dict(faultcode="Client",
faultstring=faultstring)
log.warning("Client-side error: %s" % r['faultstring'])
log.debug("Client-side error: %s" % r['faultstring'])
r['debuginfo'] = None
return r
else: