From: David Tardon Date: Tue, 21 Feb 2023 09:41:47 +0000 (+0100) Subject: logind-session: make stopping of idle session visible to admins X-Git-Tag: v254-rc1~1213 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6269ffe7ee8a659df7336a2582054ecd9eecf4b1;p=thirdparty%2Fsystemd.git logind-session: make stopping of idle session visible to admins --- diff --git a/src/login/logind-session.c b/src/login/logind-session.c index 2a121faea59..63b6d012ee5 100644 --- a/src/login/logind-session.c +++ b/src/login/logind-session.c @@ -710,7 +710,7 @@ static int session_dispatch_stop_on_idle(sd_event_source *source, uint64_t t, vo idle = session_get_idle_hint(s, &ts); if (idle) { - log_debug("Session \"%s\" of user \"%s\" is idle, stopping.", s->id, s->user->user_record->user_name); + log_info("Session \"%s\" of user \"%s\" is idle, stopping.", s->id, s->user->user_record->user_name); return session_stop(s, /* force */ true); }