Add extra debugging for google OperationWaiter

This commit is contained in:
Radek Simko 2015-08-20 20:51:55 +01:00 committed by Radek Simko
parent a9f813a93b
commit 7183537d5c

View File

@ -3,6 +3,7 @@ package google
import (
"bytes"
"fmt"
"log"
"github.com/hashicorp/terraform/helper/resource"
"google.golang.org/api/compute/v1"
@ -52,6 +53,8 @@ func (w *OperationWaiter) RefreshFunc() resource.StateRefreshFunc {
return nil, "", err
}
log.Printf("[DEBUG] Got %q when asking for operation %q", op.Status, w.Op.Name)
return op, op.Status, nil
}
}