]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
rec: More clear trace message for cache-only lookups. 12121/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Mon, 24 Oct 2022 09:17:27 +0000 (11:17 +0200)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Mon, 24 Oct 2022 09:17:27 +0000 (11:17 +0200)
Fixes #12080

pdns/syncres.cc

index 443b94fd63e9d0056dc602ab8fe918cb55af6a19..5095bbbff77db3709c325bf2408760f5e2b144e1 100644 (file)
@@ -1819,7 +1819,7 @@ int SyncRes::doResolveNoQNameMinimization(const DNSName &qname, const QType qtyp
       if(!(d_updatingRootNS && qtype.getCode()==QType::NS && qname.isRoot())) {
         if(d_cacheonly) { // very limited OOB support
           LWResult lwr;
-          LOG(prefix<<qname<<": Recursion not requested for '"<<qname<<"|"<<qtype<<"', peeking at auth/forward zones"<<endl);
+          LOG(prefix<<qname<<": cache only lookup for '"<<qname<<"|"<<qtype<<"', first peeking at auth/forward zones"<<endl);
           DNSName authname(qname);
           domainmap_t::const_iterator iter=getBestAuthZone(&authname);
           if(iter != t_sstorage.domainmap->end()) {