From efbc22efb150629053175bca89cd76fe72df2c18 Mon Sep 17 00:00:00 2001 From: Renaud Barate Date: Wed, 23 May 2012 15:42:46 +0000 Subject: [PATCH] Add log for execution mode --- src/GENERICSOLVER/DEVIATION.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/GENERICSOLVER/DEVIATION.py b/src/GENERICSOLVER/DEVIATION.py index 7685e39..f65373f 100644 --- a/src/GENERICSOLVER/DEVIATION.py +++ b/src/GENERICSOLVER/DEVIATION.py @@ -164,12 +164,16 @@ class DEVIATION(GENERICSOLVER_ORB__POA.DEVIATION_Gen, logger.debug("outputVarList: %s" % paramInput.outputVarList) logger.debug("inputValues: %s" % paramInput.inputValues) - # Get id + # Get id and execution mode id = "" + exec_mode = "" for parameter in paramInput.specificParameters: if parameter.name == "id": id = parameter.value + if parameter.name == "executionMode": + exec_mode = parameter.value logger.debug("ID: %s" % id) + logger.debug("Execution mode: %s" % exec_mode) inputDict = create_input_dict(self.deterministicValues, paramInput) logger.debug("inputDict = %s" % inputDict) -- 2.39.2