From ca875f54573dada975418fc64c4bfb761c854bc3 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 21 Sep 2014 22:36:34 -0700 Subject: [PATCH] terraform: fix missing arg to Printf --- terraform/state.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/terraform/state.go b/terraform/state.go index b0cd16c54c..f02794f7be 100644 --- a/terraform/state.go +++ b/terraform/state.go @@ -596,7 +596,11 @@ func upgradeV1State(old *StateV1) (*State, error) { // Warn if the resource uses Extra, as there is // no upgrade path for this! Now totally deprecated. if len(rs.Extra) > 0 { - log.Printf("[WARN] Resource %s uses deprecated attribute storage, state file upgrade may be incomplete.") + log.Printf( + "[WARN] Resource %s uses deprecated attribute "+ + "storage, state file upgrade may be incomplete.", + rs.ID, + ) } } return s, nil