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>
}
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());