From 1be6068c48946547fa2b136022382a09dbddb584 Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Mon, 10 Nov 2025 03:02:47 +0100 Subject: [PATCH] notify: raise log level for safe_fork() --- src/notify/notify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notify/notify.c b/src/notify/notify.c index 3035c9f6cfe..270d1b1f9ad 100644 --- a/src/notify/notify.c +++ b/src/notify/notify.c @@ -520,7 +520,7 @@ static int action_fork(char *const *_command) { /* stdio_fds= */ (const int[]) { -EBADF, -EBADF, STDERR_FILENO }, /* except_fds= */ NULL, /* n_except_fds= */ 0, - /* flags= */ FORK_REARRANGE_STDIO, + /* flags= */ FORK_REARRANGE_STDIO|FORK_LOG, &child); if (r < 0) return log_error_errno(r, "Failed to fork child in order to execute '%s': %m", c); -- 2.47.3