From adb584870655f75d695a96570b475a47c6cd8970 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Thu, 10 Sep 2020 15:20:35 +0900 Subject: [PATCH] journal: downgrade log level --- src/journal/journald-server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/journal/journald-server.c b/src/journal/journald-server.c index 105aefdd6e..34ba24daf6 100644 --- a/src/journal/journald-server.c +++ b/src/journal/journald-server.c @@ -2551,7 +2551,7 @@ int config_parse_line_max( r = parse_size(rvalue, 1024, &v); if (r < 0) { - log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse LineMax= value, ignoring: %s", rvalue); + log_syntax(unit, LOG_WARNING, filename, line, r, "Failed to parse LineMax= value, ignoring: %s", rvalue); return 0; } @@ -2606,7 +2606,7 @@ int config_parse_compress( if (r < 0) { r = parse_size(rvalue, 1024, &compress->threshold_bytes); if (r < 0) - log_syntax(unit, LOG_ERR, filename, line, r, + log_syntax(unit, LOG_WARNING, filename, line, r, "Failed to parse Compress= value, ignoring: %s", rvalue); else compress->enabled = true;