diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-07-10 11:03:36 -0400 |
---|---|---|
committer | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-07-10 11:22:10 -0400 |
commit | 89c0511e3839e2d707c7baf7dbab594eec627d09 (patch) | |
tree | 1502029d35225323aae0d8a8a1c99d11a0ef610f | |
parent | 02a4b0715923ea52c07dc3c7ed2f3c3cd7ec2a9a (diff) |
Change log level for parameter print
Change execute node so that values of parameters are only printed
at TRACE level.
Change-Id: I458e77819eef2f14a9e56db44544c3fd945a5a44
Issue-ID: CCSDK-1465
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
-rw-r--r-- | sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/ExecuteNodeExecutor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/ExecuteNodeExecutor.java b/sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/ExecuteNodeExecutor.java index e9fe78e88..cef582b7c 100644 --- a/sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/ExecuteNodeExecutor.java +++ b/sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/ExecuteNodeExecutor.java @@ -91,7 +91,7 @@ public class ExecuteNodeExecutor extends AbstractSvcLogicNodeExecutor { SvcLogicExpression curExpr = curEnt.getValue(); String curExprValue = SvcLogicExpressionResolver.evaluate(curExpr, node, ctx); - LOG.debug("Parameter "+curName+" = "+curExpr.asParsedExpr()+" resolves to "+curExprValue); + LOG.trace("Parameter "+curName+" = "+curExpr.asParsedExpr()+" resolves to "+curExprValue); parmMap.put(curName,curExprValue); } |