Merge pull request #1015 from luoliwoshang/runtime/rmlog

runtime:rm log of StartProcess
This commit is contained in:
xushiwei
2025-02-28 18:10:54 +08:00
committed by GitHub

View File

@@ -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
}