diff --git a/terraform/context.go b/terraform/context.go index 97d0c82da..7714455c9 100644 --- a/terraform/context.go +++ b/terraform/context.go @@ -739,9 +739,9 @@ func (c *Context) walk( // Kick off the shadow walk. This will block on any operations // on the real walk so it is fine to start first. + log.Printf("[INFO] Starting shadow graph walk: %s", operation.String()) shadowCh := make(chan error) go func() { - log.Printf("[INFO] Starting shadow graph walk: %s", operation.String()) shadowCh <- shadow.Walk(shadowWalker) }()