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
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,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: