diff --git a/runtime/internal/lib/os/exec_posix.go b/runtime/internal/lib/os/exec_posix.go index 0b9e6731..27861f35 100644 --- a/runtime/internal/lib/os/exec_posix.go +++ b/runtime/internal/lib/os/exec_posix.go @@ -64,7 +64,6 @@ func startProcess(name string, argv []string, attr *ProcAttr) (p *Process, err e return nil, &PathError{Op: "fork/exec", Path: name, Err: e} } } - println("StartProcess", pid, h, e) return newProcess(pid, h), nil }