aboutsummaryrefslogtreecommitdiff
path: root/src/hostcache.cc
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-10-07 22:28:46 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-10-07 23:37:24 -0300
commit708bd2e3cf0a7aa825e6da96caaec55bd271f896 (patch)
treeddf068e441e73d1a8da9f10a09064237b3da824a /src/hostcache.cc
parentaa31732158d3e457dfe630f3b2e56f53de89e2b1 (diff)
downloadquerymanager-708bd2e3cf0a7aa825e6da96caaec55bd271f896.tar.gz
querymanager-708bd2e3cf0a7aa825e6da96caaec55bd271f896.zip
worker initialization robustness + query processing
Diffstat (limited to 'src/hostcache.cc')
-rw-r--r--src/hostcache.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/hostcache.cc b/src/hostcache.cc
index 55c8663..5cbc2fa 100644
--- a/src/hostcache.cc
+++ b/src/hostcache.cc
@@ -18,8 +18,6 @@ static THostCacheEntry *g_CachedHostNames;
bool InitHostCache(void){
ASSERT(g_CachedHostNames == NULL);
- LOG("Max cached host names: %d", g_Config.MaxCachedHostNames);
- LOG("Host name expire time: %dms", g_Config.HostNameExpireTime);
g_CachedHostNames = (THostCacheEntry*)calloc(
g_Config.MaxCachedHostNames, sizeof(THostCacheEntry));
return true;