From 871f656daa2619e6b2b38b330cdc43b22f647555 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 31 Jan 2023 08:49:01 -0500 Subject: [PATCH] Adjust level for parsing to Notice This confirms to users that the zone has loaded. --- pdns/recursordist/reczones.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/recursordist/reczones.cc b/pdns/recursordist/reczones.cc index 7c03da4140..4af95fee50 100644 --- a/pdns/recursordist/reczones.cc +++ b/pdns/recursordist/reczones.cc @@ -325,8 +325,8 @@ std::tuple, std::shared_ptr> // headers.first=toCanonic("", headers.first); if (n == 0) { ad.d_rdForward = false; - SLOG(g_log << Logger::Info << "Parsing authoritative data for zone '" << headers.first << "' from file '" << headers.second << "'" << endl, - log->info(Logr::Info, "Parsing authoritative data from file", "zone", Logging::Loggable(headers.first), "file", Logging::Loggable(headers.second))); + SLOG(g_log << Logger::Notice << "Parsing authoritative data for zone '" << headers.first << "' from file '" << headers.second << "'" << endl, + log->info(Logr::Notice, "Parsing authoritative data from file", "zone", Logging::Loggable(headers.first), "file", Logging::Loggable(headers.second))); ZoneParserTNG zpt(headers.second, DNSName(headers.first)); zpt.setMaxGenerateSteps(::arg().asNum("max-generate-steps")); zpt.setMaxIncludes(::arg().asNum("max-include-depth")); -- 2.47.2