Separate arguments with a space while writing

This commit is contained in:
Abhishek Chanda
2016-02-16 17:13:19 -08:00
parent 8cc58dc10a
commit 7f1ed162c0

View File

@@ -112,7 +112,7 @@ func NewExecutor(logger *log.Logger) Executor {
// LaunchCmd launches a process and returns it's state. It also configures an
// applies isolation on certain platforms.
func (e *UniversalExecutor) LaunchCmd(command *ExecCommand, ctx *ExecutorContext) (*ProcessState, error) {
e.logger.Printf("[DEBUG] executor: launching command %v %v", command.Cmd, strings.Join(command.Args, ""))
e.logger.Printf("[DEBUG] executor: launching command %v %v", command.Cmd, strings.Join(command.Args, " "))
e.ctx = ctx