# HG changeset patch # User JC Brand # Date 1484216038 0 # Node ID b2a19866594601e0e40a80154be0f43e3d077ae4 # Parent 68ebc52222dc8e1c7f53a7d49ca0c0034423539a mod_auth_http_async: Log URL when testing password diff -r 68ebc52222dc -r b2a198665946 mod_auth_http_async/mod_auth_http_async.lua --- a/mod_auth_http_async/mod_auth_http_async.lua Thu Jan 12 09:49:32 2017 +0000 +++ b/mod_auth_http_async/mod_auth_http_async.lua Thu Jan 12 10:13:58 2017 +0000 @@ -33,8 +33,8 @@ local provider = {}; function provider.test_password(username, password) - log("debug", "test password for user %s at host %s", username, host); local url = api_base:gsub("$user", username); + log("debug", "Testing password for user %s at host %s with URL %s", username, host, url); local ex = { headers = { Authorization = "Basic "..base64(username..":"..password); }; }