net.adns: Log a warning if loaded (because net.unbound wasn't)

This commit is contained in:
Kim Alvefur 2020-06-25 17:55:24 +02:00
parent c98a6d205e
commit bde46d79cd

View file

@ -12,6 +12,8 @@ local promise = require "util.promise";
local log = require "util.logger".init("adns");
log("warn", "Old async DNS library used, lua-unbound missing?"); -- TODO write docs about luaunbound
local coroutine, pcall = coroutine, pcall;
local setmetatable = setmetatable;