diff options
author | Sébastien Determe <sd378r@intl.att.com> | 2017-09-28 14:38:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-28 14:38:32 +0000 |
commit | 38a4e2a804c7f758cad7060373a0c20aaaee21d3 (patch) | |
tree | 8a434e72a29f1bf80ef6ea5defd84dc0a9f0ac5a | |
parent | ec5784a5fa881d168c40183e7ddfbdc7ab9d8305 (diff) | |
parent | 0bc898a0d69d3206b55ef71685fbef642436b661 (diff) |
Merge "Fix the a log in Model Properties"
-rw-r--r-- | src/main/java/org/onap/clamp/clds/model/prop/ModelProperties.java | 2 |
1 files changed, 1 insertions, 1 deletions
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); } }); } |