Since we're not raising the message, we should log it. Otherwise the
user may not know that something is amiss.
_LOG.warn('invalid message {}'.format(error.message_id()))
if not continue_after_invalid_message:
raise
+ _LOG.warn('{}'.format(error))
if respond:
response = _get_error_response(error)
respond(response)
_LOG.warn('invalid message {}'.format(error.message_id()))
if not continue_after_invalid_message:
raise
+ _LOG.warn('{}'.format(error))
if respond:
response = _get_error_response(error)
if response is not None: