diff --git a/condition_equal.go b/condition_equal.go index d38d058..b5119a7 100644 --- a/condition_equal.go +++ b/condition_equal.go @@ -36,12 +36,9 @@ func (c EqualCondition) Check(other reflect.Value) (bool, error) { return c.check(value.Interface(), c.Value) } - fmt.Println("here456") subRootNode := New(value.Interface()) foundNode, err := subRootNode.Query(c.Key) - fmt.Println("789", err) if err != nil { - fmt.Println("here123") var valueNotFound = &ValueNotFound{} if errors.As(err, &valueNotFound) { return false, nil