From: Otto Moerbeek Date: Mon, 21 Feb 2022 08:21:07 +0000 (+0100) Subject: Change log level to DEBUG, as the condition is externally triggerable. X-Git-Tag: rec-4.7.0-alpha1~5^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4512fda63964e476e81aeda0e4dcbb23cf3dd70f;p=thirdparty%2Fpdns.git Change log level to DEBUG, as the condition is externally triggerable. --- diff --git a/pdns/recursordist/rec-taskqueue.cc b/pdns/recursordist/rec-taskqueue.cc index 45558190f7..1e6593006a 100644 --- a/pdns/recursordist/rec-taskqueue.cc +++ b/pdns/recursordist/rec-taskqueue.cc @@ -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};