From c0857a7a952c4da04a85dbdde962d37ded00dfff Mon Sep 17 00:00:00 2001 From: Dougal Matthews Date: Thu, 3 Oct 2019 09:31:29 +0100 Subject: [PATCH] Log the original exception in is_sync Change-Id: Id6521ba37dc5ccff727b06aecd573ac600ea8711 --- mistral/engine/actions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mistral/engine/actions.py b/mistral/engine/actions.py index ef2de4ce1..ef3b865a5 100644 --- a/mistral/engine/actions.py +++ b/mistral/engine/actions.py @@ -332,6 +332,7 @@ class PythonAction(Action): return a.is_sync() except BaseException as e: + LOG.exception(e) raise exc.InputException(str(e)) def validate_input(self, input_dict):