Browse Source

avoid verbose log message when some volumes are full

pull/2/head
Chris Lu 12 years ago
parent
commit
c2a6012ba5
  1. 2
      go/topology/volume_layout.go

2
go/topology/volume_layout.go

@ -153,7 +153,7 @@ func (vl *VolumeLayout) SetVolumeCapacityFull(vid storage.VolumeId) bool {
vl.accessLock.Lock()
defer vl.accessLock.Unlock()
log.Println("Volume", vid, "reaches full capacity.")
// log.Println("Volume", vid, "reaches full capacity.")
return vl.removeFromWritable(vid)
}

Loading…
Cancel
Save