diff options
-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 fe1d484e..c7942563 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 @@ -171,9 +171,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()); |