commit | 72878d5a7aa2e830e4c08743005dc00613d26938 | [log] [tgz] |
---|---|---|
author | Dan Timoney <dtimoney@att.com> | Wed Nov 28 22:45:56 2018 +0000 |
committer | Gerrit Code Review <gerrit@onap.org> | Wed Nov 28 22:45:56 2018 +0000 |
tree | c4cdf342b51bdddb284dd4d7f99aa37fafa47107 | |
parent | 979fe9b361db9dbd810827ef8dcc65ab5a138736 [diff] | |
parent | f182003d772efe8f9d22876b1a5b7991f4e14afc [diff] |
Merge "Add DG name to debug"
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 fe1d484..c794256 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 @@ } 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());