From 1b275c2acd714fbfe2544bf6933124baaa68b2dd Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Mon, 26 Aug 2024 12:02:30 +0200 Subject: [PATCH] crash-handler: Add back notice log message Fixes https://github.com/systemd/systemd/pull/33959#discussion_r1730987738 --- src/core/crash-handler.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/crash-handler.c b/src/core/crash-handler.c index a9425c0790..68bc96e517 100644 --- a/src/core/crash-handler.c +++ b/src/core/crash-handler.c @@ -155,6 +155,8 @@ _noreturn_ static void crash(int sig, siginfo_t *siginfo, void *context) { (void) sigaction(SIGCHLD, &sa, NULL); if (arg_crash_shell) { + log_notice("Executing crash shell..."); + pid = raw_clone(SIGCHLD); if (pid < 0) log_struct_errno(LOG_EMERG, errno,