From 5263306f1f65cca3ae5f69dfd4833f3677b3bdac Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 7 Jul 2014 21:12:21 -0700 Subject: [PATCH] terraform: more logging --- terraform/context.go | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/context.go b/terraform/context.go index 57b209d59a..318778fd4f 100644 --- a/terraform/context.go +++ b/terraform/context.go @@ -578,6 +578,7 @@ func (c *Context) planDestroyWalkFn(result *Plan) depgraph.WalkFunc { func (c *Context) refreshWalkFn() depgraph.WalkFunc { cb := func(r *Resource) error { if r.State.ID == "" { + log.Printf("[DEBUG] %s: Not refreshing, ID is empty", r.Id) return nil }