diff --git a/weed-fs/src/pkg/replication/volume_growth.go b/weed-fs/src/pkg/replication/volume_growth.go index aad6ba107..8519921f5 100644 --- a/weed-fs/src/pkg/replication/volume_growth.go +++ b/weed-fs/src/pkg/replication/volume_growth.go @@ -129,13 +129,12 @@ func (vg *VolumeGrowth) grow(topo *topology.Topology, vid storage.VolumeId, repT vi := &storage.VolumeInfo{Id: vid, Size: 0} server.AddOrUpdateVolume(vi) topo.RegisterVolumeLayout(vi, server) - fmt.Println("added", vid, "to", server) + fmt.Println("Created Volume", vid, "on", server) } else { fmt.Println("Failed to assign", vid, "to", servers) return errors.New("Failed to assign " + vid.String()) } } - fmt.Println("Assigning", vid, "to", servers) return nil } diff --git a/weed-fs/src/pkg/topology/node.go b/weed-fs/src/pkg/topology/node.go index cdd9accd4..e73719794 100644 --- a/weed-fs/src/pkg/topology/node.go +++ b/weed-fs/src/pkg/topology/node.go @@ -131,7 +131,7 @@ func (n *NodeImpl) LinkChildNode(node Node) { n.UpAdjustMaxVolumeId(node.GetMaxVolumeId()) n.UpAdjustActiveVolumeCountDelta(node.GetActiveVolumeCount()) node.setParent(n) - fmt.Println(n, "adds", node, "volumeCount =", n.activeVolumeCount) + fmt.Println(n, "adds child", node) } }