summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2023-05-03 14:12:43 +0200
committerLennart Poettering <lennart@poettering.net>2023-05-03 14:58:17 +0200
commit7b0a12675106f7667254b67f3f759249cd47ea2c (patch)
tree93b330ee794a76aaa6c62c9ab5b6ddcbedd5f824 /src/core
parent4627645442345dd5e433fec33913f034d48c8091 (diff)
downloadsystemd-7b0a12675106f7667254b67f3f759249cd47ea2c.tar.gz
manager: add debug logging about BARRIER=1 messages
Diffstat (limited to 'src/core')
-rw-r--r--src/core/manager.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/manager.c b/src/core/manager.c
index 2a7e80ca67..36881de479 100644
--- a/src/core/manager.c
+++ b/src/core/manager.c
@@ -2672,8 +2672,10 @@ static int manager_dispatch_notify_fd(sd_event_source *source, int fd, uint32_t
}
/* Possibly a barrier fd, let's see. */
- if (manager_process_barrier_fd(tags, fds))
+ if (manager_process_barrier_fd(tags, fds)) {
+ log_debug("Received barrier notification message from PID " PID_FMT ".", ucred->pid);
return 0;
+ }
/* Increase the generation counter used for filtering out duplicate unit invocations. */
m->notifygen++;