Skip to content

Commit

Permalink
bootctl: downgrade graceful messages to LOG_NOTICE
Browse files Browse the repository at this point in the history
(cherry picked from commit 5019b0c)

Related: RHEL-16952
  • Loading branch information
poettering authored and msekletar committed Mar 13, 2024
1 parent 27758fc commit 51c9811
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/boot/bootctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -2119,9 +2119,9 @@ static int install_random_seed(const char *esp) {
return log_error_errno(r, "Failed to write 'LoaderSystemToken' EFI variable: %m");

if (r == -EINVAL)
log_warning_errno(r, "Unable to write 'LoaderSystemToken' EFI variable (firmware problem?), ignoring: %m");
log_notice_errno(r, "Unable to write 'LoaderSystemToken' EFI variable (firmware problem?), ignoring: %m");
else
log_warning_errno(r, "Unable to write 'LoaderSystemToken' EFI variable, ignoring: %m");
log_notice_errno(r, "Unable to write 'LoaderSystemToken' EFI variable, ignoring: %m");
} else
log_info("Successfully initialized system token in EFI variable with %zu bytes.", sizeof(buffer));
}
Expand Down
File renamed without changes.

0 comments on commit 51c9811

Please sign in to comment.