From: Andrew Sayers Date: Wed, 29 Jan 2025 13:13:04 +0000 (+0000) Subject: Reduce priority of "cleared HibernateLocation" message X-Git-Tag: v258-rc1~1451 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f575145ea27daca9bc3ac86d1c4f42273b4306a;p=thirdparty%2Fsystemd.git Reduce priority of "cleared HibernateLocation" message This message appears when a computer hibernates, then awakens, then reboots, and everything goes OK. It's a normal progress message the user doesn't need to know about, but it distracts them from important startup messages and could even train them to ignore the warning when the procedure fails. Reduce the level to LOG_INFO. --- diff --git a/src/hibernate-resume/hibernate-resume.c b/src/hibernate-resume/hibernate-resume.c index c6494b99a91..d86f4ad18f0 100644 --- a/src/hibernate-resume/hibernate-resume.c +++ b/src/hibernate-resume/hibernate-resume.c @@ -120,7 +120,7 @@ static int action_clear(void) { r = clear_efi_hibernate_location_and_warn(); if (r > 0) - log_notice("Successfully cleared HibernateLocation EFI variable."); + log_info("Successfully cleared HibernateLocation EFI variable."); return r; }