mod_rest/mod_rest.lua
changeset 3891 3d0e8e32453c
parent 3883 3b31ff7b4c7c
child 3913 eb27e51cf2c9
--- a/mod_rest/mod_rest.lua	Fri Feb 07 20:53:57 2020 +0100
+++ b/mod_rest/mod_rest.lua	Fri Feb 07 20:57:47 2020 +0100
@@ -37,7 +37,6 @@
 		if not username then return false; end
 		username, password = encodings.stringprep.nodeprep(username), encodings.stringprep.saslprep(password);
 		if not username then return false; end
-		module:log("debug", "usermanager.test_password(%q, %q, %q)", username, module.host, string.rep("*", #password))
 		if not um.test_password(username, module.host, password) then
 			return false;
 		end