From 3dfc46abd39fd34a30157aa25bcd29bf780748ee Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 15 Feb 2017 16:10:30 -0800 Subject: [PATCH] log the Go runtime version at TF startup This will help us debug issues which have been caused by Go bugs. --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index e7750afa9..b94de2ebc 100644 --- a/main.go +++ b/main.go @@ -103,6 +103,7 @@ func wrappedMain() int { log.Printf( "[INFO] Terraform version: %s %s %s", Version, VersionPrerelease, GitCommit) + log.Printf("[INFO] Go runtime version: %s", runtime.Version()) log.Printf("[INFO] CLI args: %#v", os.Args) // Load the configuration