remove verbose logging.

This commit is contained in:
chrislusf 2015-03-29 11:44:16 -07:00
parent 1b6ab2f6af
commit b96911c517

View file

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