From: Determe, Sebastien (sd378r) Date: Thu, 28 Sep 2017 13:33:45 +0000 (+0200) Subject: Fix the a log in Model Properties X-Git-Tag: v1.1.0~50^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=clamp.git;a=commitdiff_plain;h=0bc898a0d69d3206b55ef71685fbef642436b661 Fix the a log in Model Properties One of the log did not contain the stacktrace for Model properties Change-Id: I5f269bb1744343ef9646cf818babfd77ea237b76 Issue-ID: CLAMP-54 Signed-off-by: Determe, Sebastien (sd378r) --- diff --git a/src/main/java/org/onap/clamp/clds/model/prop/ModelProperties.java b/src/main/java/org/onap/clamp/clds/model/prop/ModelProperties.java index b9effc57..7111f1dd 100644 --- a/src/main/java/org/onap/clamp/clds/model/prop/ModelProperties.java +++ b/src/main/java/org/onap/clamp/clds/model/prop/ModelProperties.java @@ -135,7 +135,7 @@ public class ModelProperties { .newInstance(this, modelBpmn, modelJson))); } catch (InstantiationException | NoSuchMethodException | IllegalAccessException | InvocationTargetException e) { - logger.warn("Unable to instantiate a ModelElement, exception follows: " + e); + logger.warn("Unable to instantiate a ModelElement, exception follows: ", e); } }); }