From dba750e6de182d2f29b3d990daed44dd183c744b Mon Sep 17 00:00:00 2001 From: Lang Martin Date: Thu, 11 Jul 2019 16:39:43 -0400 Subject: [PATCH] executor remove a debugging line --- drivers/shared/executor/executor.go | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/shared/executor/executor.go b/drivers/shared/executor/executor.go index 4a025abd998..bd68c33d99a 100644 --- a/drivers/shared/executor/executor.go +++ b/drivers/shared/executor/executor.go @@ -315,7 +315,6 @@ func (e *UniversalExecutor) Launch(command *ExecCommand) (*ProcessState, error) if e.resConCtx.isEmpty() { go e.pidCollector.collectPids(e.processExited, getAllPids) } else { - e.logger.Debug("NOT empty") go e.pidCollector.collectPids(e.processExited, e.getAllPids) } go e.wait()