ReturnNodeExecutor Fixing Logger Statement 39/95939/1
authorSingal, Kapil (ks220y) <ks220y@att.com>
Wed, 18 Sep 2019 17:30:20 +0000 (13:30 -0400)
committerSingal, Kapil (ks220y) <ks220y@att.com>
Wed, 18 Sep 2019 17:30:20 +0000 (13:30 -0400)
Adding third variable to the logger so that Expression prints properly

Change-Id: I2e4a74ace199506698abede88778e6314b226e59
Issue-ID: CCSDK-1745
Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com>
sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/ReturnNodeExecutor.java

index ab284e5..8ee4657 100644 (file)
@@ -66,7 +66,7 @@ public class ReturnNodeExecutor extends AbstractSvcLogicNodeExecutor {
                                        curEnt.getValue(), node, ctx);
 
                        if (LOG.isDebugEnabled()) {
-                               LOG.debug(SETTING_DEBUG_PATTERN, curName, curValue);
+                               LOG.debug(SETTING_DEBUG_PATTERN, curName, curValue, curEnt.getValue());
                        }
                        ctx.setAttribute(curName, curValue);
                }