]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Change log level to DEBUG, as the condition is externally triggerable.
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Mon, 21 Feb 2022 08:21:07 +0000 (09:21 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Wed, 23 Feb 2022 06:31:10 +0000 (07:31 +0100)
pdns/recursordist/rec-taskqueue.cc

index 45558190f7b90d79b974eb6c37beb7332c6ef1fc..1e6593006af1961d13056e9292d0e7bd354f829b 100644 (file)
@@ -187,7 +187,7 @@ void pushAlmostExpiredTask(const DNSName& qname, uint16_t qtype, time_t deadline
   case QType::ADDR:
   case QType::ALIAS:
   case QType::LUA:
-    g_log << Logger::Error << "Cannot push task for " << QType(qtype).toString() << endl;
+    g_log << Logger::Debug << "Cannot push task for " << QType(qtype).toString() << endl;
     return;
   }
   pdns::ResolveTask task{qname, qtype, deadline, true, resolve};