]> granicus.if.org Git - pdns/commitdiff
silence debugging noise
authorbert hubert <bert.hubert@netherlabs.nl>
Fri, 30 Oct 2015 19:14:16 +0000 (20:14 +0100)
committerbert hubert <bert.hubert@netherlabs.nl>
Fri, 30 Oct 2015 19:39:25 +0000 (20:39 +0100)
pdns/filterpo.cc

index 3c96b98862901ee77d22ecce4e71fe17145d82ca..a46645534655cbb085465b19c3746be45246b64e 100644 (file)
@@ -45,7 +45,7 @@ DNSFilterEngine::Policy DNSFilterEngine::getProcessingPolicy(const DNSName& qnam
   Policy pol{PolicyKind::NoAction};
   for(const auto& z : d_zones) {
     if(findNamedPolicy(z.propolName, qname, pol)) {
-      cerr<<"Had a hit on the nameserver ("<<qname<<") used to process the query"<<endl;
+      //      cerr<<"Had a hit on the nameserver ("<<qname<<") used to process the query"<<endl;
       return pol;
     }
   }
@@ -55,18 +55,18 @@ DNSFilterEngine::Policy DNSFilterEngine::getProcessingPolicy(const DNSName& qnam
 
 DNSFilterEngine::Policy DNSFilterEngine::getQueryPolicy(const DNSName& qname, const ComboAddress& ca) const
 {
-  cout<<"Got question for "<<qname<<" from "<<ca.toString()<<endl;
+  //  cout<<"Got question for "<<qname<<" from "<<ca.toString()<<endl;
 
   Policy pol{PolicyKind::NoAction};
   for(const auto& z : d_zones) {
     if(findNamedPolicy(z.qpolName, qname, pol)) {
-      cerr<<"Had a hit on the name of the query"<<endl;
+      //      cerr<<"Had a hit on the name of the query"<<endl;
       return pol;
     }
     
     for(const auto& qa : z.qpolAddr) {
       if(qa.first.match(ca)) {
-       cerr<<"Had a hit on the IP address ("<<ca.toString()<<") of the client"<<endl;
+       //      cerr<<"Had a hit on the IP address ("<<ca.toString()<<") of the client"<<endl;
        return qa.second;
       }
     }
@@ -92,7 +92,7 @@ DNSFilterEngine::Policy DNSFilterEngine::getPostPolicy(const vector<DNSRecord>&
     for(const auto& z : d_zones) {
       for(const auto& qa : z.postpolAddr) {
        if(qa.first.match(ca)) {
-         cerr<<"Had a hit on IP address in answer"<<endl;
+         //      cerr<<"Had a hit on IP address in answer"<<endl;
          return qa.second;
        }
       }