mod_dialback: Change level of some log statements to be more appropriate
authorKim Alvefur <zash@zash.se>
Sat, 10 Aug 2013 19:53:22 +0200
changeset 5778 8ea6fa8459e3
parent 5777 c98f11bcd0ea
child 5779 70bb0df1ffe7
mod_dialback: Change level of some log statements to be more appropriate
plugins/mod_dialback.lua
--- a/plugins/mod_dialback.lua	Sat Aug 10 19:02:52 2013 +0200
+++ b/plugins/mod_dialback.lua	Sat Aug 10 19:53:22 2013 +0200
@@ -26,7 +26,7 @@
 	-- generate dialback key
 	session.dialback_key = generate_dialback(session.streamid, session.to_host, session.from_host);
 	session.sends2s(st.stanza("db:result", { from = session.from_host, to = session.to_host }):text(session.dialback_key));
-	session.log("info", "sent dialback key on outgoing s2s stream");
+	session.log("debug", "sent dialback key on outgoing s2s stream");
 end
 
 function verify_dialback(id, to, from, key)
@@ -71,7 +71,7 @@
 
 		if not hosts[to] then
 			-- Not a host that we serve
-			origin.log("info", "%s tried to connect to %s, which we don't serve", from, to);
+			origin.log("warn", "%s tried to connect to %s, which we don't serve", from, to);
 			origin:close("host-unknown");
 			return true;
 		elseif not from then