26 lines
713 B
Diff
26 lines
713 B
Diff
|
From bea731e8f60bb5d221483a8ccb398fd0e469e908 Mon Sep 17 00:00:00 2001
|
||
|
From: David Teigland <teigland@redhat.com>
|
||
|
Date: Thu, 2 Dec 2021 12:40:52 -0600
|
||
|
Subject: [PATCH 1/3] print warning about unrecognized journal option value
|
||
|
|
||
|
(cherry picked from commit 455c29b10dfd15a9fa2ad72c8f9de77572328d39)
|
||
|
---
|
||
|
lib/log/log.c | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/lib/log/log.c b/lib/log/log.c
|
||
|
index 7b4d537b3..5771a1d01 100644
|
||
|
--- a/lib/log/log.c
|
||
|
+++ b/lib/log/log.c
|
||
|
@@ -892,6 +892,7 @@ uint32_t log_journal_str_to_val(const char *str)
|
||
|
return LOG_JOURNAL_OUTPUT;
|
||
|
if (!strcasecmp(str, "debug"))
|
||
|
return LOG_JOURNAL_DEBUG;
|
||
|
+ log_warn("Ignoring unrecognized journal value.");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
--
|
||
|
2.31.1
|
||
|
|