Separate arguments with a space while writing

This commit is contained in:
Abhishek Chanda 2016-02-16 17:13:19 -08:00
parent d4d8197244
commit 2059cf221b
1 changed files with 1 additions and 1 deletions

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