Merge "Change client-side error logging to debug"

This commit is contained in:
Jenkins 2015-04-20 13:38:03 +00:00 committed by Gerrit Code Review
commit a42d23d8ce

View File

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