]> granicus.if.org Git - pdns/commitdiff
lower loglevel to Info for fresh zones
authorKees Monshouwer <mind04@monshouwer.org>
Thu, 15 May 2014 06:48:21 +0000 (08:48 +0200)
committermind04 <mind04@monshouwer.org>
Thu, 15 May 2014 06:48:21 +0000 (08:48 +0200)
pdns/slavecommunicator.cc

index 99dca706fd9c1a702aecfead204b5f7f12ce4773..91d3b88accfe1fb1912bed46f26d2582ea6cfe4a 100644 (file)
@@ -643,7 +643,7 @@ void CommunicatorClass::slaveRefresh(PacketHandler *P)
     }
     else if(theirserial == ourserial) {
       if(!dk.isPresigned(di.zone)) {
-        L<<Logger::Warning<<"Domain '"<< di.zone<<"' is fresh (not presigned, no RRSIG check)"<<endl;
+        L<<Logger::Info<<"Domain '"<< di.zone<<"' is fresh (not presigned, no RRSIG check)"<<endl;
         di.backend->setFresh(di.id);
       }
       else {
@@ -658,7 +658,7 @@ void CommunicatorClass::slaveRefresh(PacketHandler *P)
           }
         }
         if(maxInception == ssr.d_freshness[di.id].theirInception && maxExpire == ssr.d_freshness[di.id].theirExpire) {
-          L<<Logger::Warning<<"Domain '"<< di.zone<<"' is fresh and apex RRSIGs match"<<endl;
+          L<<Logger::Info<<"Domain '"<< di.zone<<"' is fresh and apex RRSIGs match"<<endl;
           di.backend->setFresh(di.id);
         }
         else {