From 2ca983b6d823431ab8ab028a9b80dd92c836d678 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 11 Feb 2013 22:37:13 -0800 Subject: [PATCH] print out error message --- go/replication/volume_growth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) } }