Skip to content
Snippets Groups Projects
Commit 7f2fef40 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #8888: Always throw a warrning if message handling fails.

parent 44b4b67d
No related branches found
No related tags found
No related merge requests found
......@@ -587,6 +587,8 @@ class AbstractBusListener(object):
continue
except Exception as e:
logger.warning("Handling of message failed with %s", e)
# Any thrown exceptions either Service exception or unhandled exception
# during the execution of the service handler is caught here.
self._debug(str(e))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment