From cd5c0af109fda3755d977411c86c5a68b59c428c Mon Sep 17 00:00:00 2001 From: Bill Katz Date: Thu, 14 Nov 2024 22:11:28 -0500 Subject: [PATCH] remove debug for existance query in neuronjson --- datatype/neuronjson/query.go | 1 - 1 file changed, 1 deletion(-) diff --git a/datatype/neuronjson/query.go b/datatype/neuronjson/query.go index 3754af5c..3f6c171a 100644 --- a/datatype/neuronjson/query.go +++ b/datatype/neuronjson/query.go @@ -325,7 +325,6 @@ func queryMatch(queryList ListQueryJSON, value map[string]interface{}) (matches switch v := queryValue.(type) { case FieldExistence: found = found && recordValue != nil - dvid.Infof("checking existence of field %s: %v where field %t (%v)", queryKey, v, found, recordValue) if (bool(v) && !found) || (!bool(v) && found) { and_match = false }