]> granicus.if.org Git - pdns/commitdiff
Remove Logger::NTLog
authorChristian Hofstaedtler <christian.hofstaedtler@deduktiva.com>
Sun, 3 Jan 2016 00:08:16 +0000 (01:08 +0100)
committerChristian Hofstaedtler <christian.hofstaedtler@deduktiva.com>
Sun, 3 Jan 2016 00:08:16 +0000 (01:08 +0100)
An unused relict.

modules/luabackend/lua_functions.cc
pdns/logger.hh
pdns/lua-pdns.cc
pdns/mastercommunicator.cc
pdns/tcpreceiver.cc
pdns/ueberbackend.cc

index 816bcac6dce4aaf8aa1d0523cf9ea08666eac1ed..67aabfe9b761ce2eddf89d030449e0386f8a0a95 100644 (file)
@@ -161,9 +161,6 @@ void register_lua_functions(lua_State *lua) {
     lua_pushinteger(lua, Logger::All);
     lua_setglobal(lua, "log_all");
 
-    lua_pushinteger(lua, Logger::NTLog);
-    lua_setglobal(lua, "log_ntlog");
-
     lua_pushinteger(lua, Logger::Alert);
     lua_setglobal(lua, "log_alert");
 
index 70e8f983d101e8508626c93ef0011b77069b5b4d..d4079f885af8abf8704b7744a29c4db24a9f9754 100644 (file)
@@ -39,8 +39,8 @@ public:
   Logger(const string &, int facility=LOG_DAEMON); //!< pass the identification you wish to appear in the log
 
   //! The urgency of a log message
-  enum Urgency {All=32767,NTLog=12345,Alert=LOG_ALERT, Critical=LOG_CRIT, Error=LOG_ERR, Warning=LOG_WARNING,
-               Notice=LOG_NOTICE,Info=LOG_INFO, Debug=LOG_DEBUG, None=-1};
+  enum Urgency {All=32767,Alert=LOG_ALERT, Critical=LOG_CRIT, Error=LOG_ERR, Warning=LOG_WARNING,
+                Notice=LOG_NOTICE,Info=LOG_INFO, Debug=LOG_DEBUG, None=-1};
 
   /** Log a message.
       \param msg Message you wish to log
index 22eaaacf2f8ab79476e83a6c37f4e2fa6f183cfb..a3c4604fe543f551d7e4cc710edca5e76e8471d5 100644 (file)
@@ -172,8 +172,6 @@ void pushSyslogSecurityLevelTable(lua_State* lua)
 // this function takes the global lua_state from the PowerDNSLua constructor and populates it with the syslog enums values
   lua_pushnumber(lua, Logger::All);
   lua_setfield(lua, -2, "All");
-  lua_pushnumber(lua, Logger::NTLog);
-  lua_setfield(lua, -2, "NTLog");
   lua_pushnumber(lua, Logger::Alert);
   lua_setfield(lua, -2, "Alert");
   lua_pushnumber(lua, Logger::Critical);
index 7fa27ebc5538d43c09cf7e03e93de44e116a75b4..1897986858e0ca0cc6479b56da2357496f1e9cf9 100644 (file)
@@ -210,7 +210,7 @@ time_t CommunicatorClass::doNotifications()
       }
     }
     else
-      L<<Logger::Error<<Logger::NTLog<<"Notification for "<<domain<<" to "<<ip<<" failed after retries"<<endl;
+      L<<Logger::Error<<"Notification for "<<domain<<" to "<<ip<<" failed after retries"<<endl;
   }
 
   return d_nq.earliest();
index 9824a0410269c252af09e040afd2865badea1c39..9920f51603f09eac67a4017fd1e28238a8c9271b 100644 (file)
@@ -76,7 +76,6 @@ void TCPNameserver::go()
     s_P=new PacketHandler;
   }
   catch(PDNSException &ae) {
-    L<<Logger::Error<<Logger::NTLog<<"TCP server is unable to launch backends - will try again when questions come in"<<endl;
     L<<Logger::Error<<"TCP server is unable to launch backends - will try again when questions come in: "<<ae.reason<<endl;
   }
   pthread_create(&d_tid, 0, launcher, static_cast<void *>(this));
@@ -1243,7 +1242,7 @@ void TCPNameserver::thread()
             L<<Logger::Error<<"TCP question accept error: "<<strerror(errno)<<endl;
             
             if(errno==EMFILE) {
-              L<<Logger::Error<<Logger::NTLog<<"TCP handler out of filedescriptors, exiting, won't recover from this"<<endl;
+              L<<Logger::Error<<"TCP handler out of filedescriptors, exiting, won't recover from this"<<endl;
               exit(1);
             }
           }
@@ -1254,7 +1253,7 @@ void TCPNameserver::thread()
             int room;
             d_connectionroom_sem->getValue( &room);
             if(room<1)
-              L<<Logger::Warning<<Logger::NTLog<<"Limit of simultaneous TCP connections reached - raise max-tcp-connections"<<endl;
+              L<<Logger::Warning<<"Limit of simultaneous TCP connections reached - raise max-tcp-connections"<<endl;
 
             if(pthread_create(&tid, 0, &doConnection, reinterpret_cast<void*>(fd))) {
               L<<Logger::Error<<"Error creating thread: "<<stringerror()<<endl;
index 4358e79381e79af756304da1ac4c609e4b3e0824..359d0b024605811f8d6ec75246561222e6bf4d7f 100644 (file)
@@ -534,8 +534,8 @@ void UeberBackend::lookup(const QType &qtype,const DNSName &qname, DNSPacket *pk
   d_ancount=0;
 
   if(!backends.size()) {
-    L<<Logger::Error<<Logger::NTLog<<"No database backends available - unable to answer questions."<<endl;
-    stale=true; // please recycle us! 
+    L<<Logger::Error<<"No database backends available - unable to answer questions."<<endl;
+    stale=true; // please recycle us!
     throw PDNSException("We are stale, please recycle");
   }
   else {