diff options
| author | Chris Lu <chris.lu@gmail.com> | 2013-08-08 15:04:00 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2013-08-08 15:04:00 -0700 |
| commit | c2a6012ba5f13a1d15f34b10a5af062fd7251e18 (patch) | |
| tree | e84be620560eab7b571beec600d542549999f950 /go/topology | |
| parent | f457eef144e148396d476d23b762cf4dc99f7c85 (diff) | |
| download | seaweedfs-c2a6012ba5f13a1d15f34b10a5af062fd7251e18.tar.xz seaweedfs-c2a6012ba5f13a1d15f34b10a5af062fd7251e18.zip | |
avoid verbose log message when some volumes are full
Diffstat (limited to 'go/topology')
| -rw-r--r-- | go/topology/volume_layout.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go/topology/volume_layout.go b/go/topology/volume_layout.go index 9664d3748..e54491268 100644 --- a/go/topology/volume_layout.go +++ b/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) } |
