summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-03-08 09:21:25 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-03-12 17:35:58 +0100
commit2b6a68adf236f99fde5329106013176915de245c (patch)
treec3eca61c9c5cc0f017119c8820c3bc443c89b6a6
parent3e74d2b62ec06236f649907e808f8bc0519d631d (diff)
downloadsystemd-2b6a68adf236f99fde5329106013176915de245c.tar.gz
oomd: "downgrade" level of message
PID1 already logs about the service being started, so this line isn't necessary in normal use. Also, by the time it is emitted, the service has already signalled readiness, so let's not say "starting" but "started". (cherry picked from commit a19c1a4baaa1dadc80885e3ad41f19a6c6c450fd)
-rw-r--r--src/oom/oomd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/oom/oomd.c b/src/oom/oomd.c
index 8cf776ec0f..9caa126705 100644
--- a/src/oom/oomd.c
+++ b/src/oom/oomd.c
@@ -166,7 +166,7 @@ static int run(int argc, char *argv[]) {
notify_msg = notify_start(NOTIFY_READY, NOTIFY_STOPPING);
- log_info("systemd-oomd starting%s!", arg_dry_run ? " in dry run mode" : "");
+ log_debug("systemd-oomd started%s.", arg_dry_run ? " in dry run mode" : "");
r = sd_event_loop(m->event);
if (r < 0)