diff options
author | AnotherTest <ali.mpfard@gmail.com> | 2021-01-04 11:44:18 +0330 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-04 19:13:18 +0100 |
commit | 4adfdb98aa2252409e766d43ae9e4a4ede82e12e (patch) | |
tree | 324aac99fb5dd922d4e40a7564005fcb23f44a88 | |
parent | 1c4a425bff4549f2b268fb937b0fc3d47b28f54e (diff) | |
download | serenity-4adfdb98aa2252409e766d43ae9e4a4ede82e12e.zip |
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.
-rw-r--r-- | Shell/Shell.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Shell/Shell.cpp b/Shell/Shell.cpp index afd227e509..c70b982413 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(); |