Skip to content

Commit

Permalink
remove debug for existance query in neuronjson
Browse files Browse the repository at this point in the history
  • Loading branch information
DocSavage committed Nov 15, 2024
1 parent 3a7eb62 commit cd5c0af
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion datatype/neuronjson/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit cd5c0af

Please sign in to comment.