net.unbound: Log net.server interactions

Noticed the potential need for this thanks to Ge0rG
This commit is contained in:
Kim Alvefur 2021-01-05 19:53:40 +01:00
parent fb6fb88474
commit a698496ef2

View file

@ -45,7 +45,9 @@ end
-- Note: libunbound will default to using root hints if resolvconf is unset
local function connect_server(unbound, server)
log("debug", "Setting up net.server event handling for %s", unbound);
return server.watchfd(unbound, function ()
log("debug", "Processing queries for %s", unbound);
unbound:process()
end);
end