Software /
code /
prosody
Diff
net/adns.lua @ 10974:3b9d533da8fe
util.dependencies: Tone down lua-unbound dependency for now
At least until packages are available
Wording from MattJ
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 27 Jun 2020 14:25:57 +0200 |
parent | 10966:97de279ca01a |
child | 11217:65ce1178d655 |
line wrap: on
line diff
--- a/net/adns.lua Fri Jun 26 16:41:31 2020 +0100 +++ b/net/adns.lua Sat Jun 27 14:25:57 2020 +0200 @@ -12,7 +12,8 @@ local log = require "util.logger".init("adns"); -log("warn", "Old async DNS library used, lua-unbound missing?"); -- TODO write docs about luaunbound +log("debug", "Using legacy DNS API (missing lua-unbound?)"); -- TODO write docs about luaunbound +-- TODO Raise log level once packages are available local coroutine, pcall = coroutine, pcall; local setmetatable = setmetatable;