From 80c129a9613520ed23d4a1e1e62d9000bd60137d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 2 Mar 2015 08:41:09 -0800 Subject: [PATCH] terraform: style, multiline a long line --- terraform/graph_builder.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/terraform/graph_builder.go b/terraform/graph_builder.go index 6368e54dc3..4d57269549 100644 --- a/terraform/graph_builder.go +++ b/terraform/graph_builder.go @@ -28,7 +28,9 @@ func (b *BasicGraphBuilder) Build(path []string) (*Graph, error) { return g, err } - log.Printf("[TRACE] Graph after step %T:\n\n%s", step, g.String()) + log.Printf( + "[TRACE] Graph after step %T:\n\n%s", + step, g.String()) } // Validate the graph structure