Merge pull request #259 from phobos182/debug

builder/amazon/common: Log error messages from goamz on state change errors
This commit is contained in:
Mitchell Hashimoto 2013-08-09 11:58:24 -07:00
commit 85020a0aed
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ func InstanceStateRefreshFunc(conn *ec2.EC2, i *ec2.Instance) StateRefreshFunc {
return func() (interface{}, string, error) {
resp, err := conn.Instances([]string{i.InstanceId}, ec2.NewFilter())
if err != nil {
log.Printf("Error on InstanceStateRefresh: %s", err)
return nil, "", err
}