From 1ddad2d16797ec364dadb7ed40623c788d9999a5 Mon Sep 17 00:00:00 2001 From: Tom Wright Date: Mon, 8 Nov 2021 14:32:19 +0000 Subject: [PATCH] Remove some logging lines --- condition_equal.go | 3 --- 1 file changed, 3 deletions(-) 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