aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-06-27 14:25:57 +0200
committerKim Alvefur <zash@zash.se>2020-06-27 14:25:57 +0200
commit8c73ea0b2286fed2d1a91333c8d92dab247fd568 (patch)
tree60ac15351c0885abbeb37ed310b01187d59f9df5 /net
parentfb8e10737dfe14aaaa5fbc0295044f1f57dc9ad0 (diff)
downloadprosody-8c73ea0b2286fed2d1a91333c8d92dab247fd568.tar.gz
prosody-8c73ea0b2286fed2d1a91333c8d92dab247fd568.zip
util.dependencies: Tone down lua-unbound dependency for now
At least until packages are available Wording from MattJ
Diffstat (limited to 'net')
-rw-r--r--net/adns.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/adns.lua b/net/adns.lua
index 852f3f4f..8fe05653 100644
--- a/net/adns.lua
+++ b/net/adns.lua
@@ -12,7 +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
+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;