commit | f182003d772efe8f9d22876b1a5b7991f4e14afc | [log] [tgz] |
---|---|---|
author | Brandon, Bruce (bb2697) <bb2697@att.com> | Wed Nov 28 22:10:56 2018 +0000 |
committer | Brandon, Bruce (bb2697) <bb2697@att.com> | Wed Nov 28 22:15:41 2018 +0000 |
tree | 68e507836bf10b3043cf8f2fee3474483a3d70c8 | |
parent | 66672fd9b9f6b28b3624d06f731d5097e6a186c8 [diff] |
Add DG name to debug Add DG name to debug line giving node ID execution Change-Id: I95ef74982694ab53068339cce88ec3ea8ccf2258 Issue-ID: SDNC-538 Signed-off-by: Brandon, Bruce (bb2697) <bb2697@att.com>
diff --git a/sli/provider/src/main/java/org/onap/ccsdk/sli/core/sli/provider/SvcLogicServiceImpl.java b/sli/provider/src/main/java/org/onap/ccsdk/sli/core/sli/provider/SvcLogicServiceImpl.java index c5a848a..8755ea1 100755 --- a/sli/provider/src/main/java/org/onap/ccsdk/sli/core/sli/provider/SvcLogicServiceImpl.java +++ b/sli/provider/src/main/java/org/onap/ccsdk/sli/core/sli/provider/SvcLogicServiceImpl.java
@@ -173,9 +173,9 @@ } LOG.info("About to execute node # {} ({})", node.getNodeId(), node.getNodeType()); - + if (LOG.isDebugEnabled()) { - LOG.debug("Executing node {}", node.getNodeId()); + LOG.debug("Executing node " + node.getNodeId() + " of " + node.getGraph().getRpc()); } SvcLogicNodeExecutor executor = nodeExecutors.get(node.getNodeType());