Fix operator associativity in SLI debug log
[sdnc/core.git] / sli / common / src / main / java / org / openecomp / sdnc / sli / SvcLogicAtom.java
index e7a8715..9ac6489 100644 (file)
@@ -137,6 +137,11 @@ public class SvcLogicAtom extends SvcLogicExpression {
        
        public String asParsedExpr()
        {
+               // simplify debugging output for NUMBER type
+               if (atomType == AtomType.NUMBER) {
+                       return atom;
+               }
+
                StringBuffer sbuff = new StringBuffer();
                
                sbuff.append("(atom");