packer/plugin: Println should be Printf

This commit is contained in:
Mitchell Hashimoto 2013-07-01 11:01:23 -07:00
parent 9cf78edcf0
commit 7d32b7f4b3
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ func (c *Client) Start() (address string, err error) {
timeout := time.After(c.config.StartTimeout)
// Start looking for the address
log.Println("Waiting for RPC address for: %s", cmd.Path)
log.Printf("Waiting for RPC address for: %s", cmd.Path)
for done := false; !done; {
select {
case <-timeout: