diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-12-15 17:36:19 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-12-15 20:52:28 +0100 |
commit | 3a671cd130cc8588d9ac6251e84477f5367da9b8 (patch) | |
tree | 1365db295a34f29811847abc4289c6fd7e053fd2 /src | |
parent | 3c3c6cb95d70a248d88cc49e43329784858ba7c1 (diff) | |
download | systemd-3a671cd130cc8588d9ac6251e84477f5367da9b8.tar.gz systemd-3a671cd130cc8588d9ac6251e84477f5367da9b8.tar.bz2 systemd-3a671cd130cc8588d9ac6251e84477f5367da9b8.zip |
main: tweak timerslack message a bit
Let's clarify that this is a non-issue, by downgrading it to LOG_WARN
and saying "ignoring" in the message.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/main.c b/src/core/main.c index 623cbc4231..ccd35f19dd 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1949,7 +1949,7 @@ static int initialize_runtime( if (arg_timer_slack_nsec != NSEC_INFINITY) if (prctl(PR_SET_TIMERSLACK, arg_timer_slack_nsec) < 0) - log_error_errno(errno, "Failed to adjust timer slack: %m"); + log_warning_errno(errno, "Failed to adjust timer slack, ignoring: %m"); if (arg_system && !cap_test_all(arg_capability_bounding_set)) { r = capability_bounding_set_drop_usermode(arg_capability_bounding_set); |