diff options
author | Brandon, Bruce (bb2697) <bb2697@att.com> | 2018-11-28 22:10:56 +0000 |
---|---|---|
committer | Brandon, Bruce (bb2697) <bb2697@att.com> | 2018-11-28 22:15:41 +0000 |
commit | f182003d772efe8f9d22876b1a5b7991f4e14afc (patch) | |
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>
-rwxr-xr-x | sli/provider/src/main/java/org/onap/ccsdk/sli/core/sli/provider/SvcLogicServiceImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
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 c5a848a1..8755ea1d 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 @@ public class SvcLogicServiceImpl implements SvcLogicService { } 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()); |