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