Browse Source

remove verbose logging.

pull/114/head
chrislusf 10 years ago
parent
commit
b96911c517
  1. 1
      go/storage/needle_map_boltdb.go

1
go/storage/needle_map_boltdb.go

@ -87,7 +87,6 @@ func (m *BoltDbNeedleMap) Get(key uint64) (element *NeedleValue, ok bool) {
}) })
if err != nil || len(data) != 8 { if err != nil || len(data) != 8 {
glog.V(0).Infof("Failed to get %d %v", key, err)
return nil, false return nil, false
} }
offset := util.BytesToUint32(data[0:4]) offset := util.BytesToUint32(data[0:4])

Loading…
Cancel
Save