Merge "fix: Reduce logging severity of certain errors"

This commit is contained in:
Jenkins 2013-12-09 21:16:56 +00:00 committed by Gerrit Code Review
commit c5ae040cbb
2 changed files with 5 additions and 5 deletions

View File

@ -76,9 +76,9 @@ def validate_queue_identification(validate, req, resp, params):
project = params['project_id']
queue = params['queue_name'].decode('utf-8', 'replace')
LOG.warn(_(u'Invalid queue name "%(queue)s" submitted for '
u'project: %(project)s'),
{'queue': queue, 'project': project})
LOG.debug(_(u'Invalid queue name "%(queue)s" submitted for '
u'project: %(project)s'),
{'queue': queue, 'project': project})
raise falcon.HTTPBadRequest(_(u'Invalid queue identification'),
_(u'The format of the submitted queue '

View File

@ -68,12 +68,12 @@ def filter_stream(stream, len, spec=None, doctype=JSONObject):
document = utils.read_json(stream, len)
except utils.MalformedJSON as ex:
LOG.exception(ex)
LOG.debug(ex)
description = _(u'Request body could not be parsed.')
raise errors.HTTPBadRequestBody(description)
except utils.OverflowedJSONInteger as ex:
LOG.exception(ex)
LOG.debug(ex)
description = _(u'JSON contains integer that is too large.')
raise errors.HTTPBadRequestBody(description)