]> granicus.if.org Git - pdns/commitdiff
Cleanup the log messages a bit
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 14 Feb 2015 14:18:37 +0000 (15:18 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Tue, 17 Feb 2015 08:32:52 +0000 (09:32 +0100)
And fix a few typos while we're at it.

15 files changed:
modules/ldapbackend/ldapbackend.cc
modules/pipebackend/pipebackend.cc
modules/remotebackend/remotebackend.cc
pdns/dnsbackend.cc
pdns/dynlistener.cc
pdns/mastercommunicator.cc
pdns/misc.cc
pdns/nameserver.cc
pdns/packethandler.cc
pdns/pdns_recursor.cc
pdns/rec_channel_rec.cc
pdns/receiver.cc
pdns/reczones.cc
pdns/signingpipe.cc
pdns/tcpreceiver.cc

index 137804f6b7741e9213b17ce82e0c97a298175e01..0eda8630b510b73e5493b7a5c704d6fdb3c09b0a 100644 (file)
@@ -312,7 +312,7 @@ inline bool LdapBackend::prepare()
                m_ttl = (uint32_t) strtol( m_result["dNSTTL"][0].c_str(), &endptr, 10 );
                if( *endptr != '\0' )
                {
-                       L << Logger::Warning << m_myname << " Invalid time to life for " << m_qname << ": " << m_result["dNSTTL"][0] << endl;
+                       L << Logger::Warning << m_myname << " Invalid time to live for " << m_qname << ": " << m_result["dNSTTL"][0] << endl;
                        m_ttl = m_default_ttl;
                }
                m_result.erase( "dNSTTL" );
index 3fb7dc9b1b5e2b6493db095666fca2766559a739..b8f68d764f28ce224ad1b4b1529b0e374a76e318 100644 (file)
@@ -80,7 +80,7 @@ void CoWrapper::receive(string &line)
       return;
    }
    catch(PDNSException &ae) {
-      L<<Logger::Warning<<kBackendId<<" unable to receive data from coprocess. "<<ae.reason<<endl;
+      L<<Logger::Warning<<kBackendId<<" Unable to receive data from coprocess. "<<ae.reason<<endl;
       delete d_cp;
       d_cp=0;
       throw;
@@ -205,7 +205,7 @@ bool PipeBackend::get(DNSResourceRecord &r)
       vector<string>parts;
       stringtok(parts,line,"\t");
       if(parts.empty()) {
-         L<<Logger::Error<<kBackendId<<" coprocess returned emtpy line in query for "<<d_qname<<endl;
+         L<<Logger::Error<<kBackendId<<" Coprocess returned empty line in query for "<<d_qname<<endl;
          throw PDNSException("Format error communicating with coprocess");
       }
       else if(parts[0]=="FAIL") {
@@ -220,7 +220,7 @@ bool PipeBackend::get(DNSResourceRecord &r)
       }
       else if(parts[0]=="DATA") { // yay
          if(parts.size() < 7 + extraFields) {
-            L<<Logger::Error<<kBackendId<<" coprocess returned incomplete or empty line in data section for query for "<<d_qname<<endl;
+            L<<Logger::Error<<kBackendId<<" Coprocess returned incomplete or empty line in data section for query for "<<d_qname<<endl;
             throw PDNSException("Format error communicating with coprocess in data section");
             // now what?
          }
@@ -247,7 +247,7 @@ bool PipeBackend::get(DNSResourceRecord &r)
          }
          else {
            if(parts.size()< 8 + extraFields) {
-            L<<Logger::Error<<kBackendId<<" coprocess returned incomplete MX/SRV line in data section for query for "<<d_qname<<endl;
+            L<<Logger::Error<<kBackendId<<" Coprocess returned incomplete MX/SRV line in data section for query for "<<d_qname<<endl;
             throw PDNSException("Format error communicating with coprocess in data section of MX/SRV record");
            }
            
index feaffe9ca82d1da631d1ad9de48f1cb55326f07b..47dbad905a19693d8b80771d02a9a8711991406a 100644 (file)
@@ -33,9 +33,9 @@ bool Connector::recv(rapidjson::Document &value) {
            if (messages.IsArray()) {
               // log em all
               for (rapidjson::Value::ValueIterator iter = messages.Begin(); iter != messages.End(); ++iter)
-                 L<<Logger::Info<<"[remotebackend]:"<< getString(*iter) <<std::endl;
+                 L<<Logger::Info<<"[remotebackend]: "<< getString(*iter) <<std::endl;
            } else if (messages.IsNull() == false) { // could be just a value
-               L<<Logger::Info<<"[remotebackend]:"<< getString(messages) <<std::endl;
+               L<<Logger::Info<<"[remotebackend]: "<< getString(messages) <<std::endl;
            }
         }
         return rv;
@@ -613,7 +613,7 @@ bool RemoteBackend::getDomainInfo(const string &domain, DomainInfo &di) {
 
    // make sure we got zone & kind
    if (!answer["result"].IsObject() || !answer["result"].HasMember("zone")) {
-      L<<Logger::Error<<kBackendId<<"Missing zone in getDomainInfo return value"<<endl;
+      L<<Logger::Error<<kBackendId<<" Missing zone in getDomainInfo return value"<<endl;
       throw PDNSException();
    }
    value = -1;
@@ -656,7 +656,7 @@ void RemoteBackend::setNotified(uint32_t id, uint32_t serial) {
    query.AddMember("parameters", parameters, query.GetAllocator());
  
    if (this->send(query) == false || this->recv(answer) == false) {
-      L<<Logger::Error<<kBackendId<<"Failed to execute RPC for RemoteBackend::setNotified("<<id<<","<<serial<<")"<<endl;
+      L<<Logger::Error<<kBackendId<<" Failed to execute RPC for RemoteBackend::setNotified("<<id<<","<<serial<<")"<<endl;
    }
 }
 
index 90c6d1d49d1c153dcb6be095fcfaeddd81624b01..a861c99ea2b77e6a764e480883725beaada192c0 100644 (file)
@@ -136,7 +136,7 @@ void BackendMakerClass::load(const string &module)
     res=UeberBackend::loadmodule(arg()["module-dir"]+"/"+module);
   
   if(res==false) {
-    L<<Logger::Error<<"dnsbackend unable to load module in "<<module<<endl;
+    L<<Logger::Error<<"DNSBackend unable to load module in "<<module<<endl;
     exit(1);
   }
 }
@@ -258,7 +258,7 @@ bool DNSBackend::getSOA(const string &domain, SOAData &sd, DNSPacket *p)
   }
 
   if(!sd.serial) { // magic time!
-    DLOG(L<<Logger::Warning<<"Doing soa serialnumber autocalculation for "<<rr.qname<<endl);
+    DLOG(L<<Logger::Warning<<"Doing SOA serial number autocalculation for "<<rr.qname<<endl);
 
     time_t serial;
     if (calculateSOASerial(domain, sd, serial)) {
index 8e6dc142e779cfeaa5fa01cbc6a51fce8523ba70..5b3c8c1261796a83aa536579053311e1596dce86 100644 (file)
@@ -172,7 +172,7 @@ DynListener::DynListener(const string &progname)
     if(!mkdir(socketname.c_str(),0700)) // make /var directory, if needed
       L<<Logger::Warning<<"Created local state directory '"<<socketname<<"'"<<endl;
     else if(errno!=EEXIST) {
-      L<<Logger::Critical<<"FATAL: Unable to create socket directory ("<<socketname<<") and it does not exist yet"<<endl;
+      L<<Logger::Critical<<"Unable to create socket directory ("<<socketname<<") and it does not exist yet"<<endl;
       exit(1);
     }
     
index 55d77929e4552c87d5e5c7ee498a3e07b8df4a1b..cb3a6770b99f4564726ef62ff76c9802469fa7c7 100644 (file)
@@ -60,7 +60,7 @@ void CommunicatorClass::queueNotifyDomain(const string &domain, UeberBackend *B)
         const ComboAddress caIp(*k, 53);
         if(!d_preventSelfNotification || !AddressIsUs(caIp)) {
           if(!d_onlyNotify.match(&caIp))
-            L<<Logger::Info<<"Skiped notification of domain '"<<domain<<"' to "<<*j<<" because it does not match only-notify."<<endl;
+            L<<Logger::Info<<"Skipped notification of domain '"<<domain<<"' to "<<*j<<" because it does not match only-notify."<<endl;
           else
             ips.insert(caIp.toStringWithPort());
         }
index 01529cf054a9dc9a2da70e2162ae42e44ad03bea..e155bc9bc121587fc3f38e9cb43e778437ad26b0 100644 (file)
@@ -916,7 +916,7 @@ void setSocketTimestamps(int fd)
 #ifdef SO_TIMESTAMP
   int on=1;
   if (setsockopt(fd, SOL_SOCKET, SO_TIMESTAMP, (char*)&on, sizeof(on)) < 0 )
-    L<<Logger::Error<<"Warning: unable to enable timestamp reporting for socket"<<endl;
+    L<<Logger::Error<<"Unable to enable timestamp reporting for socket"<<endl;
 #endif
 }
 
index 27823af82ea0ce46d6dee6699ef59791370262b7..a46aa83e65d99e2f35cda2823424bffd09361988 100644 (file)
@@ -100,7 +100,7 @@ void UDPNameserver::bindIPv4()
     s=socket(AF_INET,SOCK_DGRAM,0);
 
     if(s<0) {
-      L<<Logger::Error<<"Unable to acquire UDP socket: "+string(strerror(errno)) << endl;
+      L<<Logger::Error<<"Unable to acquire UDP socket: "+string(strerror(errno)) << endl;
       throw PDNSException("Unable to acquire a UDP socket: "+string(strerror(errno)));
     }
   
@@ -137,7 +137,7 @@ void UDPNameserver::bindIPv4()
         L<<Logger::Error<<"IPv4 Address " << localname << " does not exist on this server - skipping UDP bind" << endl;
         continue;
       } else {
-        L<<Logger::Error<<"binding UDP socket to '"+locala.toStringWithPort()+"': "<<binderror<<endl;
+        L<<Logger::Error<<"Unable to bind UDP socket to '"+locala.toStringWithPort()+"': "<<binderror<<endl;
         throw PDNSException("Unable to bind to UDP socket");
       }
     }
@@ -199,8 +199,8 @@ void UDPNameserver::bindIPv6()
 
     s=socket(AF_INET6,SOCK_DGRAM,0);
     if(s<0) {
-      L<<Logger::Error<<"Unable to acquire UDPv6 socket: "+string(strerror(errno)) << endl;
-      throw PDNSException("Unable to acquire UDPv6 socket: "+string(strerror(errno)));
+      L<<Logger::Error<<"Unable to acquire UDPv6 socket: "+string(strerror(errno)) << endl;
+      throw PDNSException("Unable to acquire UDPv6 socket: "+string(strerror(errno)));
     }
 
     Utility::setCloseOnExec(s);
@@ -231,8 +231,8 @@ void UDPNameserver::bindIPv6()
         L<<Logger::Error<<"IPv6 Address " << localname << " does not exist on this server - skipping UDP bind" << endl;
         continue;
       } else {
-        L<<Logger::Error<<"binding to UDP ipv6 socket "<< localname <<": "<<strerror(errno)<<endl;
-        throw PDNSException("Unable to bind to UDP ipv6 socket");
+        L<<Logger::Error<<"Unable to bind to UDPv6 socket "<< localname <<": "<<strerror(errno)<<endl;
+        throw PDNSException("Unable to bind to UDPv6 socket");
       }
     }
     d_sockets.push_back(s);
index de7ecabd720eef4899dbb342a43d58bf0987aa47..651beb1384d7c697060a97c88798ad6fecd6eb9f 100644 (file)
@@ -1160,7 +1160,7 @@ DNSPacket *PacketHandler::questionOrRecurse(DNSPacket *p, bool *shouldRecurse)
         addRootReferral(r);
       }
       else {
-        DLOG(L<<Logger::Warning<<"setting 'No Error'"<<endl);
+        DLOG(L<<Logger::Warning<<"Setting 'No Error'"<<endl);
       }
       goto sendit;
     }
index 72f46837c26f3c8f50ba881fa4a59f4b91dc0946..1c9272af483c05097459382a15d94e0839b652bf 100644 (file)
@@ -264,7 +264,7 @@ void setSocketBuffer(int fd, int optname, uint32_t size)
   }
 
   if (setsockopt(fd, SOL_SOCKET, optname, (char*)&size, sizeof(size)) < 0 )
-    L<<Logger::Error<<"Warning: unable to raise socket buffer size to "<<size<<": "<<strerror(errno)<<endl;
+    L<<Logger::Error<<"Unable to raise socket buffer size to "<<size<<": "<<strerror(errno)<<endl;
 }
 
 
@@ -469,7 +469,7 @@ static void writePid(void)
   if(of)
     of<< Utility::getpid() <<endl;
   else
-    L<<Logger::Error<<"Requested to write pid for "<<Utility::getpid()<<" to "<<s_pidfname<<" failed: "<<strerror(errno)<<endl;
+    L<<Logger::Error<<"Writing pid for "<<Utility::getpid()<<" to "<<s_pidfname<<" failed: "<<strerror(errno)<<endl;
 }
 
 typedef map<ComboAddress, uint32_t, ComboAddress::addressOnlyLessThan> tcpClientCounts_t;
index aefce242de74c4abe5ec8c2435d70f98ec03d643..4c0dc19a7183992e8813e71882363b92e6ed9ee7 100644 (file)
@@ -883,12 +883,12 @@ string RecursorControlParser::getAnswer(const string& question, RecursorControlP
     } 
     catch(std::exception& e) 
     {
-      L<<Logger::Error<<"reloading ACLs failed (Exception: "<<e.what()<<")"<<endl;
+      L<<Logger::Error<<"Reloading ACLs failed (Exception: "<<e.what()<<")"<<endl;
       return e.what() + string("\n");
     }
     catch(PDNSException& ae)
     {
-      L<<Logger::Error<<"reloading ACLs failed (PDNSException: "<<ae.reason<<")"<<endl;
+      L<<Logger::Error<<"Reloading ACLs failed (PDNSException: "<<ae.reason<<")"<<endl;
       return ae.reason + string("\n");
     }
     return "ok\n";
index 9452edf1846b118833f12f62a68f9e5e8893c228..3925f95e800c299d33b7fe081f68641b70cb2c63 100644 (file)
@@ -130,7 +130,7 @@ static void writePid(void)
   if(of)
     of<<getpid()<<endl;
   else
-    L<<Logger::Error<<"Requested to write pid for "<<getpid()<<" to "<<fname<<" failed: "<<strerror(errno)<<endl;
+    L<<Logger::Error<<"Writing pid for "<<getpid()<<" to "<<fname<<" failed: "<<strerror(errno)<<endl;
 }
 
 int g_fd1[2], g_fd2[2];
@@ -308,8 +308,7 @@ static int guardian(int argc, char **argv)
           exit(1);
         }
         setStatus("Child died with code "+itoa(ret));
-        L<<Logger::Error<<"Our pdns instance exited with code "<<ret<<endl;
-        L<<Logger::Error<<"Respawning"<<endl;
+        L<<Logger::Error<<"Our pdns instance exited with code "<<ret<<", respawning"<<endl;
 
         sleep(1);
         continue;
@@ -366,7 +365,7 @@ static void loadModules()
         res=UeberBackend::loadmodule(::arg()["module-dir"]+"/"+module);
       
       if(res==false) {
-        L<<Logger::Error<<"receiver unable to load module "<<module<<endl;
+        L<<Logger::Error<<"Receiver unable to load module "<<module<<endl;
         exit(1);
       }
     }
index 6f79004a6ca1e5755a98f665fd57cee56b1156c1..acf09ce910012536dce6de92588241895882759a 100644 (file)
@@ -297,7 +297,7 @@ string reloadAuthAndForwards()
     return "ok\n";
   }
   catch(std::exception& e) {
-    L<<Logger::Error<<"Had error reloading zones, keeping original data: "<<e.what()<<endl;
+    L<<Logger::Error<<"Encountered error reloading zones, keeping original data: "<<e.what()<<endl;
   }
   catch(PDNSException& ae) {
     L<<Logger::Error<<"Encountered error reloading zones, keeping original data: "<<ae.reason<<endl;
index c2bd2d381cf34b181f77374ff990991bb1a4ae69..3b21b97b9b4867a501fe8fd47cc661a5f3ac6f92 100644 (file)
@@ -63,7 +63,7 @@ try
   return 0;
 }
 catch(...) {
-  L<<Logger::Error<<"unknown exception in signing thread occurred"<<endl;
+  L<<Logger::Error<<"Unknown exception in signing thread occurred"<<endl;
   return 0;
 }
 
index dbbd83e5fdc0eea76c25359012c9bee010c8736e..8417bde7ddec2656a2433c386352d653ee5bb7b8 100644 (file)
@@ -1088,7 +1088,7 @@ TCPNameserver::TCPNameserver()
         L<<Logger::Error<<"IPv4 Address " << *laddr << " does not exist on this server - skipping TCP bind" << endl;
         continue;
       } else {
-        L<<Logger::Error<<"binding to TCP socket " << *laddr << ": "<<strerror(errno)<<endl;
+        L<<Logger::Error<<"Unable to bind to TCP socket " << *laddr << ": "<<strerror(errno)<<endl;
         throw PDNSException("Unable to bind to TCP socket");
       }
     }
@@ -1128,7 +1128,7 @@ TCPNameserver::TCPNameserver()
         L<<Logger::Error<<"IPv6 Address " << *laddr << " does not exist on this server - skipping TCP bind" << endl;
         continue;
       } else {
-        L<<Logger::Error<<"binding to TCPv6 socket" << *laddr << ": "<<strerror(errno)<<endl;
+        L<<Logger::Error<<"Unable to bind to TCPv6 socket" << *laddr << ": "<<strerror(errno)<<endl;
         throw PDNSException("Unable to bind to TCPv6 socket");
       }
     }