You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AstLog.Errorf("Error while evaluating rule %s, got %v", e.RuleName, err)
184
185
185
-
returnfalse, err
186
+
returnfalse, fmt.Errorf("evaluating expression in rule '%s' the when raised an error. got %v", dataContext.GetRuleEntry().RuleName, err)
186
187
}
187
188
ifval.Kind() !=reflect.Bool {
188
189
189
-
returnfalse, fmt.Errorf("expression in when is not a boolean expression : %s", e.WhenScope.Expression.GetGrlText())
190
+
returnfalse, fmt.Errorf("evaluating expression in rule '%s', the when is not a boolean expression : %s", dataContext.GetRuleEntry().RuleName, e.WhenScope.Expression.GetGrlText())
0 commit comments