log the Go runtime version at TF startup

This will help us debug issues which have been caused by Go bugs.
pull/11990/head
Mitchell Hashimoto 9 years ago
parent fa2fd0bf01
commit 3dfc46abd3
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A

@ -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

Loading…
Cancel
Save