fix: log verbosity

This commit is contained in:
2022-10-06 05:30:11 +02:00
parent 638a5734ee
commit 7ffc9ce26f
@@ -55,7 +55,7 @@ local function async_http_auth(url, username, password)
-- module:log("debug", "HTTP auth provider confirmed valid password");
return true;
else
module:log("debug", "HTTP auth provider returned status code %d", code);
module:log("info", "HTTP auth provider returned status code %d", code);
end
return nil, "Auth failed. Invalid username or password.";
end