aboutsummaryrefslogtreecommitdiff
path: root/go/topology/volume_layout.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2014-03-30 11:28:04 -0700
committerChris Lu <chris.lu@gmail.com>2014-03-30 11:28:04 -0700
commit2861275fb67112cb2fe51521b5052c3f1a98414d (patch)
treea86f0eeab6a0603d1217983430c11bb59632d87c /go/topology/volume_layout.go
parent259c7d66f72938857ee94cc747fc54982fbbcb1f (diff)
downloadseaweedfs-2861275fb67112cb2fe51521b5052c3f1a98414d.tar.xz
seaweedfs-2861275fb67112cb2fe51521b5052c3f1a98414d.zip
working filer server!
Diffstat (limited to 'go/topology/volume_layout.go')
-rw-r--r--go/topology/volume_layout.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/topology/volume_layout.go b/go/topology/volume_layout.go
index 61121a498..a53e2ae82 100644
--- a/go/topology/volume_layout.go
+++ b/go/topology/volume_layout.go
@@ -34,7 +34,7 @@ func (vl *VolumeLayout) RegisterVolume(v *storage.VolumeInfo, dn *DataNode) {
vl.vid2location[v.Id] = NewVolumeLocationList()
}
vl.vid2location[v.Id].Set(dn)
- glog.V(3).Infoln("volume", v.Id, "added to dn", dn, "len", vl.vid2location[v.Id].Length(), "copy", v.ReplicaPlacement.GetCopyCount())
+ glog.V(4).Infoln("volume", v.Id, "added to dn", dn, "len", vl.vid2location[v.Id].Length(), "copy", v.ReplicaPlacement.GetCopyCount())
if vl.vid2location[v.Id].Length() == vl.rp.GetCopyCount() && vl.isWritable(v) {
vl.AddToWritable(v.Id)
} else {