aboutsummaryrefslogtreecommitdiff
path: root/go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2013-02-11 22:37:13 -0800
committerChris Lu <chris.lu@gmail.com>2013-02-11 22:37:13 -0800
commit2ca983b6d823431ab8ab028a9b80dd92c836d678 (patch)
treefca30d401b4704c31eee9c055927aae58aadb919 /go
parentaecea226660bb3a5404b840eddba668baff7886d (diff)
downloadseaweedfs-2ca983b6d823431ab8ab028a9b80dd92c836d678.tar.xz
seaweedfs-2ca983b6d823431ab8ab028a9b80dd92c836d678.zip
print out error message
Diffstat (limited to 'go')
-rw-r--r--go/replication/volume_growth.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/replication/volume_growth.go b/go/replication/volume_growth.go
index 977d31044..747e07642 100644
--- a/go/replication/volume_growth.go
+++ b/go/replication/volume_growth.go
@@ -187,7 +187,7 @@ func (vg *VolumeGrowth) grow(topo *topology.Topology, vid storage.VolumeId, repT
topo.RegisterVolumeLayout(&vi, server)
fmt.Println("Created Volume", vid, "on", server)
} else {
- fmt.Println("Failed to assign", vid, "to", servers)
+ fmt.Println("Failed to assign", vid, "to", servers, "error", err)
return errors.New("Failed to assign " + vid.String())
}
}