Use Printf not Println. D'oh.
This commit is contained in:
parent
35aaf44fa5
commit
8a9962882c
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue