From 8895eb7815de9931e043c2a3bd3e6750bee47719 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 11 Jan 2018 15:07:14 +0100 Subject: [PATCH] unit: log when we cannot add a watch on a specific PID --- src/core/service.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/service.c b/src/core/service.c index c6835a4d6c..14763a83b0 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -2588,7 +2588,9 @@ static int service_deserialize_item(Unit *u, const char *key, const char *value, log_unit_debug(u, "Failed to parse main-pid value: %s", value); else { service_set_main_pid(s, pid); - unit_watch_pid(UNIT(s), pid); + r = unit_watch_pid(UNIT(s), pid); + if (r < 0) + log_unit_debug_errno(u, r, "Failed to watch main PID, ignoring: %m"); } } else if (streq(key, "main-pid-known")) { int b;