From 709c40026c6be84056199aaf0c44e87b267b04b1 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 23 Feb 2015 13:45:34 -0800 Subject: [PATCH] terraform: remove debug println --- terraform/context.go | 1 - 1 file changed, 1 deletion(-) diff --git a/terraform/context.go b/terraform/context.go index f1326dae7..97abe573c 100644 --- a/terraform/context.go +++ b/terraform/context.go @@ -231,7 +231,6 @@ func (c *Context) Apply() (*State, error) { // Clean out any unused things c.state.prune() - println(fmt.Sprintf("%#v", c.state)) return c.state, err }