From 87e0eafe032727c45d0dc36bfa70c31934dd2269 Mon Sep 17 00:00:00 2001 From: Michael Ferrari Date: Thu, 6 Jun 2024 16:06:34 +0200 Subject: [PATCH] firstboot: reduce log level of timezone validation An error message is already printed directly after, so the user already knows that the validation failed. This also isn't done for the other validation functions. --- src/firstboot/firstboot.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c index cdd416b5714..85ceffa13b8 100644 --- a/src/firstboot/firstboot.c +++ b/src/firstboot/firstboot.c @@ -559,8 +559,8 @@ static int process_keymap(int rfd) { return 1; } -static bool timezone_is_valid_log_error(const char *name) { - return timezone_is_valid(name, LOG_ERR); +static bool timezone_is_valid_log_debug(const char *name) { + return timezone_is_valid(name, LOG_DEBUG); } static int prompt_timezone(int rfd) { @@ -592,7 +592,7 @@ static int prompt_timezone(int rfd) { print_welcome(rfd); r = prompt_loop("Please enter timezone name or number", - zones, 30, timezone_is_valid_log_error, &arg_timezone); + zones, 30, timezone_is_valid_log_debug, &arg_timezone); if (r < 0) return r; -- 2.47.3