]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Change Parsing authoritative data for zone logging to Info
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Tue, 31 Jan 2023 13:27:30 +0000 (08:27 -0500)
committerGitHub <noreply@github.com>
Tue, 31 Jan 2023 13:27:30 +0000 (08:27 -0500)
pdns/recursordist/reczones.cc

index 6777ee174382f381f04eef6f2307d5d1ebe89fee..7c03da414097be297b2daa05d95324606c6098cd 100644 (file)
@@ -325,8 +325,8 @@ std::tuple<std::shared_ptr<SyncRes::domainmap_t>, std::shared_ptr<notifyset_t>>
       // headers.first=toCanonic("", headers.first);
       if (n == 0) {
         ad.d_rdForward = false;
-        SLOG(g_log << Logger::Error << "Parsing authoritative data for zone '" << headers.first << "' from file '" << headers.second << "'" << endl,
-             log->info(Logr::Error, "Parsing authoritative data from file", "zone", Logging::Loggable(headers.first), "file", Logging::Loggable(headers.second)));
+        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)));
         ZoneParserTNG zpt(headers.second, DNSName(headers.first));
         zpt.setMaxGenerateSteps(::arg().asNum("max-generate-steps"));
         zpt.setMaxIncludes(::arg().asNum("max-include-depth"));