net.unbound: Don't pass error as logger formatting string

This could cause weirdness if the error contains formatting options, but
should be reasonably safe with util.format
This commit is contained in:
Kim Alvefur 2021-01-05 20:02:46 +01:00
parent a698496ef2
commit b4403aaddd

View file

@ -123,7 +123,7 @@ local function lookup(callback, qname, qtype, qclass)
if ret then
waiting_queries[ret] = callback;
else
log("warn", err);
log("warn", "Resolver error: %s", err);
end
return ret, err;
end