changeset 3887:3d0e8e32453c

mod_rest: Remove no longer needed logging I wasn't sure that curl et all passed the correct password, so the length was included.
author Kim Alvefur <zash@zash.se>
date Fri, 07 Feb 2020 20:57:47 +0100
parents b64b08b7bf8e
children 04ea96a0488d
files mod_rest/mod_rest.lua
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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