avoid verbose log message when some volumes are full

This commit is contained in:
Chris Lu 2013-08-08 15:04:00 -07:00
parent f457eef144
commit c2a6012ba5

View file

@ -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)
}