]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
List supported DNSSEC algorithms at log level NOTICE
authorTony Finch <fanf@isc.org>
Tue, 13 Dec 2022 13:02:19 +0000 (13:02 +0000)
committerTony Finch <dot@dotat.at>
Wed, 14 Dec 2022 11:01:22 +0000 (11:01 +0000)
NOTICE matches the other startup messages. WARNING weirdly
suggests the list is a problem.

CHANGES
bin/named/main.c

diff --git a/CHANGES b/CHANGES
index 11e35c00af44d424846b04a591294f99d532da7a..4063fa1a4d442c43d749af0082575edda9c5cc82 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+6045.  [cleanup]       The list of supported DNSSEC algorithms changed log
+                       level from "warning" to "notice" to match named's other
+                       startup messages. [GL !7217]
+
 6044.  [bug]           There was an "RSASHA236" typo in a log message.
                        [GL !7206]
 
index a75bbdb6e564b98a3cd406c044ba75a6fb91891b..4cd6cf3ed91b4671e07d218d00cc8faf32151572 100644 (file)
@@ -511,7 +511,7 @@ list_hmac_algorithms(isc_buffer_t *b) {
 static void
 logit(isc_buffer_t *b) {
        isc_log_write(named_g_lctx, NAMED_LOGCATEGORY_GENERAL,
-                     NAMED_LOGMODULE_MAIN, ISC_LOG_WARNING, "%.*s",
+                     NAMED_LOGMODULE_MAIN, ISC_LOG_NOTICE, "%.*s",
                      (int)isc_buffer_usedlength(b),
                      (char *)isc_buffer_base(b));
 }