builder/qemu: unnecssary log

This commit is contained in:
Mitchell Hashimoto 2013-11-05 17:48:52 -08:00
parent 1d70002719
commit 3e58ca4c98
1 changed files with 1 additions and 4 deletions

View File

@ -41,10 +41,7 @@ func (stepConfigureVNC) Run(state multistep.StateBag) multistep.StepAction {
}
}
msg = fmt.Sprintf("Found available VNC port: %d", vncPort)
ui.Say(msg)
log.Printf(msg)
ui.Say(fmt.Sprintf("Found available VNC port: %d", vncPort))
state.Put("vnc_port", vncPort)
return multistep.ActionContinue