From 2059cf221b03db1323b777876daff8cdf0350a5d Mon Sep 17 00:00:00 2001 From: Abhishek Chanda Date: Tue, 16 Feb 2016 17:13:19 -0800 Subject: [PATCH] Separate arguments with a space while writing --- client/driver/executor/executor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/driver/executor/executor.go b/client/driver/executor/executor.go index 7ab5bc96e..7c383adfd 100644 --- a/client/driver/executor/executor.go +++ b/client/driver/executor/executor.go @@ -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