From cb6b1aee96c6ae0f8bc751deff7207fd62b03b58 Mon Sep 17 00:00:00 2001 From: Nadia Mayor Date: Fri, 10 May 2024 18:07:50 -0300 Subject: [PATCH] Update debug message --- engine/grammar/condition.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/grammar/condition.go b/engine/grammar/condition.go index fbdd3a3..07693c9 100644 --- a/engine/grammar/condition.go +++ b/engine/grammar/condition.go @@ -45,7 +45,7 @@ func processMatchers(condMatchers []dtos.MatcherDTO, ctx *injection.Context, log if err == nil { matcherObjs = append(matcherObjs, m) } else { - logger.Debug("error in BuildMaycher, reason: ", err.Error()) + logger.Debug("error in BuildMatcher, reason: ", err.Error()) if _, ok := err.(datatypes.UnsupportedMatcherError); ok { return nil, err }