1
0
mirror of https://github.com/systemd/systemd synced 2024-07-05 17:39:42 +00:00

cryptsetup: downgrade log message to warning, when we ignore it

This commit is contained in:
Lennart Poettering 2024-06-10 17:46:52 +02:00
parent 86854ee6e6
commit 8a4883dbc3

View File

@ -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;
}