terraform: improved logging

This commit is contained in:
Mitchell Hashimoto 2016-09-21 11:03:04 -07:00
parent 7baf64f806
commit b9b23e8483
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 4 additions and 0 deletions

View File

@ -99,6 +99,10 @@ func (t *DestroyEdgeTransformer) Transform(g *Graph) error {
a_d := d.(dag.Vertex)
a := v
log.Printf(
"[TRACE] DestroyEdgeTransformer: connecting creator/destroyer: %s, %s",
dag.VertexName(a), dag.VertexName(a_d))
g.Connect(&DestroyEdge{S: a, T: a_d})
}
}