diff options
author | Kim Alvefur <zash@zash.se> | 2022-05-16 14:51:01 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-05-16 14:51:01 +0200 |
commit | 24288146ae05b47d74bd0d4403825048593623d9 (patch) | |
tree | 711b623248a77e63e581db93977f0a0de5a9ec7a | |
parent | 5e95ed633acf7454ce9f5b668bd1069e1038b499 (diff) | |
download | prosody-24288146ae05b47d74bd0d4403825048593623d9.tar.gz prosody-24288146ae05b47d74bd0d4403825048593623d9.zip |
net.unbound: Adjust log level of error to error to error
This error is an error, therefore it should be at the error level
-rw-r--r-- | net/unbound.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/unbound.lua b/net/unbound.lua index f11189fe..4d8f9284 100644 --- a/net/unbound.lua +++ b/net/unbound.lua @@ -142,7 +142,7 @@ local function lookup(callback, qname, qtype, qclass) if ret then waiting_queries[ret] = callback; else - log_query("warn", "Resolver error: %s", err); + log_query("error", "Resolver error: %s", err); end return ret, err; end |