From 222b15e8f396b419c698bc5e992823bfc8034ab6 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 1 Jul 2013 11:01:23 -0700 Subject: [PATCH] packer/plugin: Println should be Printf --- packer/plugin/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packer/plugin/client.go b/packer/plugin/client.go index a6c01683c..ac5d54f67 100644 --- a/packer/plugin/client.go +++ b/packer/plugin/client.go @@ -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: