It was never set from !recursor and has the same value as trace in
rec. Now validationo logging goes the same as other trace handling,
so trace-regex also shows validation.
SyncRes::setDefaultLogMode(SyncRes::Log);
::arg().set("quiet") = "no";
g_quiet = false;
- g_dnssecLOG = true;
}
auto myHostname = getHostname();
if (!myHostname.has_value()) {
g_luaconfs.setState(luaconfsCopy);
g_dnssecmode = DNSSECMode::Off;
- g_dnssecLOG = debug;
g_maxNSEC3Iterations = 2500;
g_aggressiveNSECCache.reset();
#include "rec-lua-conf.hh"
#include "base32.hh"
#include "logger.hh"
-bool g_dnssecLOG{false};
+
time_t g_signatureInceptionSkew{0};
uint16_t g_maxNSEC3Iterations{0};
#ifndef RECURSOR
-#define LOG(x) if(g_dnssecLOG) { g_log <<Logger::Warning << x; }
+// Originally there was a flag but is was never set from !RECURSOR
+#define LOG(x) if (false) g_log <<Logger::Warning << x
#else
#define LOG(x) \
if (log) { \
#include "dnssecinfra.hh"
#include "logger.hh"
-extern bool g_dnssecLOG;
extern time_t g_signatureInceptionSkew;
extern uint16_t g_maxNSEC3Iterations;