diff --git a/src/appspawn_server.cpp b/src/appspawn_server.cpp index faaa22a12a5468af7d4e51079ac3eaea9408f4fd..0e32e571017673981413939f4441880af852700b 100644 --- a/src/appspawn_server.cpp +++ b/src/appspawn_server.cpp @@ -77,16 +77,6 @@ static void SignalHandler([[maybe_unused]] int sig) int status; while ((pid = waitpid(-1, &status, WNOHANG)) > 0) { - if (WIFEXITED(status) && WEXITSTATUS(status)) { - HiLog::Info(LABEL, "Process %{public}d exited cleanly %{public}d", pid, WEXITSTATUS(status)); - } else if (WIFSIGNALED(status)) { - if (WTERMSIG(status) != SIGKILL) { - HiLog::Info(LABEL, "Process %{public}d exited due to signal %{public}d", pid, WTERMSIG(status)); - } - if (WCOREDUMP(status)) { - HiLog::Info(LABEL, "Process %{public}d dumped core.", pid); - } - } } }