Add extra debugging for google OperationWaiter

pull/3038/head
Radek Simko 11 years ago committed by Radek Simko
parent 62f8883df0
commit cff26ea65a

@ -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
}
}

Loading…
Cancel
Save