# HG changeset patch # User Kim Alvefur # Date 1609872820 -3600 # Node ID a1aecd8cf7eebdb1899c8936b57fbb657c5e026f # Parent 4e803e80d7b1b30c010b1420dff78ffa322ffad7 net.unbound: Log net.server interactions Noticed the potential need for this thanks to Ge0rG diff -r 4e803e80d7b1 -r a1aecd8cf7ee net/unbound.lua --- a/net/unbound.lua Tue Jan 05 17:08:24 2021 +0100 +++ b/net/unbound.lua Tue Jan 05 19:53:40 2021 +0100 @@ -45,7 +45,9 @@ -- 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