From ee7a6a22b32a3526f74f00cead7fed4efbc900b4 Mon Sep 17 00:00:00 2001 From: Ross Smith II Date: Mon, 11 Nov 2013 08:42:27 -0800 Subject: [PATCH] fixed #584 log golang version in debug output --- packer.go | 1 + 1 file changed, 1 insertion(+) diff --git a/packer.go b/packer.go index f64c0fb2e..317731f09 100644 --- a/packer.go +++ b/packer.go @@ -82,6 +82,7 @@ func wrappedMain() int { "Packer Version: %s %s %s", packer.Version, packer.VersionPrerelease, packer.GitCommit) log.Printf("Packer Target OS/Arch: %s %s", runtime.GOOS, runtime.GOARCH) + log.Printf("Built with Go Version: %s", runtime.Version()) // Prepare stdin for plugin usage by switching it to a pipe setupStdin()