From 8a4883dbc3da202d7a4e3e5b131fa6e4507b77ba Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 10 Jun 2024 17:46:52 +0200 Subject: [PATCH] cryptsetup: downgrade log message to warning, when we ignore it --- src/cryptsetup/cryptsetup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cryptsetup/cryptsetup.c b/src/cryptsetup/cryptsetup.c index 7df47111f0d..0f655661a64 100644 --- a/src/cryptsetup/cryptsetup.c +++ b/src/cryptsetup/cryptsetup.c @@ -487,7 +487,7 @@ static int parse_one_option(const char *option) { if (r < 0) { r = parse_boolean(val); if (r < 0) { - log_error_errno(r, "Failed to parse %s, ignoring: %m", option); + log_warning_errno(r, "Failed to parse %s, ignoring: %m", option); return 0; } -- 2.47.3