[systemd-commits] src/core
Lennart Poettering
lennart at kemper.freedesktop.org
Fri Feb 14 02:06:30 CET 2014
src/core/service.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 3a33e61d2df24b6b2dec6176930562f93b3c4347
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Feb 14 02:05:40 2014 +0100
service: when we complain about a notify message we cannot map to main pid because we don't know anything about the main pid, do so at debug level
diff --git a/src/core/service.c b/src/core/service.c
index 5c6b638..5129784 100644
--- a/src/core/service.c
+++ b/src/core/service.c
@@ -3354,7 +3354,7 @@ static void service_notify_message(Unit *u, pid_t pid, char **tags) {
if (s->main_pid != 0)
log_warning_unit(u->id, "%s: Got notification message from PID "PID_FMT", but reception only permitted for main PID "PID_FMT, u->id, pid, s->main_pid);
else
- log_warning_unit(u->id, "%s: Got notification message from PID "PID_FMT", but reception only permitted for main PID which is currently not known", u->id, pid);
+ log_debug_unit(u->id, "%s: Got notification message from PID "PID_FMT", but reception only permitted for main PID which is currently not known", u->id, pid);
return;
}
More information about the systemd-commits
mailing list