Merge "fix: Reduce logging severity of certain errors"
This commit is contained in:
commit
c5ae040cbb
@ -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 '
|
||||
|
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user