From 433df05858eafdfd1c64eb985fb09d175bb9ecbf Mon Sep 17 00:00:00 2001 From: luoliwoshang <2643523683@qq.com> Date: Thu, 27 Feb 2025 14:18:44 +0800 Subject: [PATCH] runtime:rm log of StartProcess --- runtime/internal/lib/os/exec_posix.go | 1 - 1 file changed, 1 deletion(-) 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 }