From 772f2c8598275fe5f43825a4d9675206a18dee3a Mon Sep 17 00:00:00 2001 From: Bill Katz Date: Sat, 3 Feb 2024 23:37:19 -0500 Subject: [PATCH] clean up debug on memstore --- datatype/neuronjson/memstore.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/datatype/neuronjson/memstore.go b/datatype/neuronjson/memstore.go index e7c1f0a2..ab62c13c 100644 --- a/datatype/neuronjson/memstore.go +++ b/datatype/neuronjson/memstore.go @@ -37,16 +37,13 @@ func (d *Data) getMemDBbyVersion(v dvid.VersionID) (db *memdb, found bool) { db, found = d.dbs.static[uuid] if found { - // dvid.Infof("Found static memdb for version %d, uuid %s\n", v, uuid) return } for branch := range d.dbs.head { _, branchV, err := datastore.GetBranchHead(uuid, branch) if err == nil && branchV == v { - // dvid.Infof("Found head memdb for branch %s, version %d, uuid %s\n", branch, v, uuid) return d.dbs.head[branch], true } - // dvid.Infof("Didn't find memdb for branch %s, version %d, uuid %s, found branch %d %t\n", branch, v, uuid, branchV, found) } return }