executor: fix log line formatting

This commit is contained in:
Michael Schurter
2018-06-08 14:55:39 -07:00
parent 5b09d23813
commit d0bec72dc2

View File

@@ -63,7 +63,7 @@ func (e *UniversalExecutor) shutdownProcess(proc *os.Process) error {
if err := sendCtrlBreak(proc.Pid); err != nil {
return fmt.Errorf("executor.shutdown error: %v", err)
}
e.logger.Printf("Sent Ctrl-Break to process %v", proc.Pid)
e.logger.Printf("[INFO] executor: sent Ctrl-Break to process %v", proc.Pid)
return nil
}