From 144fb165fd365d2a89f8e8b13012d21a6057fe15 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Thu, 10 Sep 2020 15:21:43 +0900 Subject: [PATCH] homed: downgrade log level --- src/home/homed-conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/home/homed-conf.c b/src/home/homed-conf.c index df3a17358b..c6c2e1787f 100644 --- a/src/home/homed-conf.c +++ b/src/home/homed-conf.c @@ -45,7 +45,7 @@ int config_parse_default_file_system_type( assert(s); if (!isempty(rvalue) && !supported_fstype(rvalue)) { - log_syntax(unit, LOG_ERR, filename, line, 0, "Unsupported file system, ignoring: %s", rvalue); + log_syntax(unit, LOG_WARNING, filename, line, 0, "Unsupported file system, ignoring: %s", rvalue); return 0; }