Commit 7d32b7f4 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

packer/plugin: Println should be Printf

parent 9cf78edc
...@@ -252,7 +252,7 @@ func (c *Client) Start() (address string, err error) { ...@@ -252,7 +252,7 @@ func (c *Client) Start() (address string, err error) {
timeout := time.After(c.config.StartTimeout) timeout := time.After(c.config.StartTimeout)
// Start looking for the address // 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; { for done := false; !done; {
select { select {
case <-timeout: case <-timeout:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment