diff --git a/builtin/providers/google/operation.go b/builtin/providers/google/operation.go index fb79703c62..0971e3f5bb 100644 --- a/builtin/providers/google/operation.go +++ b/builtin/providers/google/operation.go @@ -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 } }