From 147eea955e8a037026ed6453636dd96d9ef2f93d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 5 Sep 2013 17:22:37 -0700 Subject: [PATCH] communicator/ssh: prettify log output --- communicator/ssh/communicator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/communicator/ssh/communicator.go b/communicator/ssh/communicator.go index ffb741851..9279ee132 100644 --- a/communicator/ssh/communicator.go +++ b/communicator/ssh/communicator.go @@ -285,7 +285,7 @@ func (c *comm) scpSession(scpCommand string, f func(io.Writer, *bufio.Reader) er // Start the sink mode on the other side // TODO(mitchellh): There are probably issues with shell escaping the path - log.Println("Starting remote scp process: %s", scpCommand) + log.Println("Starting remote scp process: ", scpCommand) if err := session.Start(scpCommand); err != nil { return err }