diff --git a/CHANGELOG.md b/CHANGELOG.md index ca3d43d79..e6d9868fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ IMPROVEMENTS: BUG FIXES: + * core: Resources suffixed with 'panic' won't falsely trigger crash detection. [GH-9395] * provider/aws: Fix issue importing AWS Instances and setting the correct `associate_public_ip_address` value [GH-9453] * provider/aws: Fix issue with updating ElasticBeanstalk environment variables [GH-9259] * provider/aws: Allow zero value for `scaling_adjustment` in `aws_autoscaling_policy` when using `SimpleScaling` [GH-8893] diff --git a/terraform/graph.go b/terraform/graph.go index 55ddb5def..efc2c65b4 100644 --- a/terraform/graph.go +++ b/terraform/graph.go @@ -244,7 +244,7 @@ func (g *Graph) walk(walker GraphWalker) error { // Allow the walker to change our tree if needed. Eval, // then callback with the output. - log.Printf("[DEBUG] vertex %s.%s: evaluating", path, dag.VertexName(v)) + log.Printf("[DEBUG] vertex '%s.%s': evaluating", path, dag.VertexName(v)) tree = walker.EnterEvalTree(v, tree) output, err := Eval(tree, vertexCtx) if rerr = walker.ExitEvalTree(v, output, err); rerr != nil {