Commit 6d4136c5 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

packer/plugin: Add plugin path to the log messages

parent 44c61e53
......@@ -166,7 +166,7 @@ func (c *client) logStderr(buf *bytes.Buffer) {
var line string
line, err = buf.ReadString('\n')
if line != "" {
log.Print(line)
log.Printf("%s: %s", c.cmd.Path, line)
}
}
......
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