Fix invalid loglevels in mod_saslauth
authorMatthew Wild <mwild1@gmail.com>
Fri, 16 Jan 2009 04:19:47 +0000
changeset 724 8beae443867f
parent 723 c1e7d280c174
child 725 96110075288b
Fix invalid loglevels in mod_saslauth
plugins/mod_saslauth.lua
--- a/plugins/mod_saslauth.lua	Thu Jan 15 20:59:36 2009 +0000
+++ b/plugins/mod_saslauth.lua	Fri Jan 16 04:19:47 2009 +0000
@@ -40,13 +40,13 @@
 local function build_reply(status, ret, err_msg)
 	local reply = st.stanza(status, {xmlns = xmlns_sasl});
 	if status == "challenge" then
-		log("challenge", ret or "");
+		log("debug", ret or "");
 		reply:text(base64.encode(ret or ""));
 	elseif status == "failure" then
 		reply:tag(ret):up();
 		if err_msg then reply:tag("text"):text(err_msg); end
 	elseif status == "success" then
-		log("success", ret or "");
+		log("debug", ret or "");
 		reply:text(base64.encode(ret or ""));
 	else
 		error("Unknown sasl status: "..status);
@@ -89,7 +89,7 @@
 	local text = stanza[1];
 	if text then
 		text = base64.decode(text);
-		log("recieved", text);
+		log("debug", text);
 		if not text then
 			session.sasl_handler = nil;
 			session.send(build_reply("failure", "incorrect-encoding"));