communicator/ssh: prettify log output

This commit is contained in:
Mitchell Hashimoto 2013-09-05 17:22:37 -07:00
parent 0e2511767e
commit 9a6309738a
1 changed files with 1 additions and 1 deletions

View File

@ -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
}