]> granicus.if.org Git - pdns/commitdiff
rec: Remove (wrong) debug message
authorRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 23 Jun 2017 14:23:56 +0000 (16:23 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 26 Jun 2017 12:28:06 +0000 (14:28 +0200)
pdns/syncres.cc

index 5899578fc9c5e375178a89e303db8f86dcd1d459..8dd6d0dfd3894e0e3ce6683f8d27f89810098393 100644 (file)
@@ -1505,14 +1505,6 @@ void SyncRes::computeZoneCuts(const DNSName& begin, const DNSName& end, unsigned
     if (cut.first.isRoot() || (begin.isPartOf(cut.first) && cut.first.isPartOf(end))) {
       LOG(" - "<<cut.first<<": "<<vStates[cut.second]<<endl);
     }
-    else {
-      if (cut.first.isPartOf(begin)) {
-        LOG("Skipping cut state "<<cut.first<<" because it's not part of "<<begin<<endl);
-      }
-      else {
-        LOG("Skipping cut state "<<cut.first<<" because "<<end<<" is not part of it"<<endl);
-      }
-    }
   }
 }