]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
auth: log "No question section in packet" at Debug. Fixes #7970 8828/head
authorPeter van Dijk <peter.van.dijk@powerdns.com>
Fri, 14 Feb 2020 16:08:35 +0000 (17:08 +0100)
committerPeter van Dijk <peter.van.dijk@powerdns.com>
Fri, 14 Feb 2020 16:08:37 +0000 (17:08 +0100)
pdns/dnspacket.cc

index 01f64311bfce38813974f6095e9ff1c6fb33ceeb..e87d0a1991896b58eecca05bdb0f80173d0ac28f 100644 (file)
@@ -559,7 +559,7 @@ try
 
   if(!ntohs(d.qdcount)) {
     if(!d_tcp) {
-      g_log << Logger::Warning << "No question section in packet from " << getRemote() <<", error="<<RCode::to_s(d.rcode)<<endl;
+      g_log << Logger::Debug << "No question section in packet from " << getRemote() <<", RCode="<<RCode::to_s(d.rcode)<<endl;
       return -1;
     }
   }