Add DG name to debug
authorBrandon, Bruce (bb2697) <bb2697@att.com>
Wed, 28 Nov 2018 22:10:56 +0000 (22:10 +0000)
committerBrandon, Bruce (bb2697) <bb2697@att.com>
Wed, 28 Nov 2018 22:15:41 +0000 (22:15 +0000)
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>
sli/provider/src/main/java/org/onap/ccsdk/sli/core/sli/provider/SvcLogicServiceImpl.java

index c5a848a..8755ea1 100755 (executable)
@@ -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());