aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2018-11-28 22:45:56 +0000
committerGerrit Code Review <gerrit@onap.org>2018-11-28 22:45:56 +0000
commit72878d5a7aa2e830e4c08743005dc00613d26938 (patch)
treec4cdf342b51bdddb284dd4d7f99aa37fafa47107
parent979fe9b361db9dbd810827ef8dcc65ab5a138736 (diff)
parentf182003d772efe8f9d22876b1a5b7991f4e14afc (diff)
Merge "Add DG name to debug"
-rwxr-xr-xsli/provider/src/main/java/org/onap/ccsdk/sli/core/sli/provider/SvcLogicServiceImpl.java4
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());