1
0
mirror of https://github.com/TomWright/dasel.git synced 2022-05-22 02:32:45 +03:00

Remove some logging lines

This commit is contained in:
Tom Wright
2021-11-08 14:32:19 +00:00
parent 0d4692801c
commit 1ddad2d167

View File

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