From 8a9962882ccd1dda3cdb9708d3db3205d40deb4a Mon Sep 17 00:00:00 2001 From: Ladar Levison Date: Thu, 27 Dec 2018 03:15:44 -0600 Subject: [PATCH] Use Printf not Println. D'oh. --- builder/hyperv/common/ssh.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/hyperv/common/ssh.go b/builder/hyperv/common/ssh.go index 95d4eeaf8..e02cf04a6 100644 --- a/builder/hyperv/common/ssh.go +++ b/builder/hyperv/common/ssh.go @@ -10,7 +10,7 @@ func CommHost(host string) func(multistep.StateBag) (string, error) { return func(state multistep.StateBag) (string, error) { if host != "" { - log.Println("Using ssh_host value: %s", ipAddress) + log.Printf("Using ssh_host value: %s", host) return host, nil }