From 4adfdb98aa2252409e766d43ae9e4a4ede82e12e Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Mon, 4 Jan 2021 11:44:18 +0330 Subject: [PATCH] Shell: Remove debug log about child process going away This is still an issue, but its existence isn't helping anyone, so just remove it. --- Shell/Shell.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Shell/Shell.cpp b/Shell/Shell.cpp index afd227e5097..c70b9824132 100644 --- a/Shell/Shell.cpp +++ b/Shell/Shell.cpp @@ -1564,7 +1564,6 @@ void Shell::notify_child_event() if (errno == ECHILD) { // The child process went away before we could process its death, just assume it exited all ok. // FIXME: This should never happen, the child should stay around until we do the waitpid above. - dbgln("Child process gone, cannot get exit code for {}", job_id); child_pid = job.pid(); } else { ASSERT_NOT_REACHED();