Use Printf not Println. D'oh.

This commit is contained in:
Ladar Levison 2018-12-27 03:15:44 -06:00
parent 35aaf44fa5
commit 8a9962882c
1 changed files with 1 additions and 1 deletions

View File

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