From: Lennart Poettering Date: Mon, 10 Jun 2024 15:46:52 +0000 (+0200) Subject: cryptsetup: downgrade log message to warning, when we ignore it X-Git-Tag: v257-rc1~1163^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a4883dbc3da202d7a4e3e5b131fa6e4507b77ba;p=thirdparty%2Fsystemd.git cryptsetup: downgrade log message to warning, when we ignore it --- 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; }