aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_dialback.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-08-10 19:53:22 +0200
committerKim Alvefur <zash@zash.se>2013-08-10 19:53:22 +0200
commit8717f83b219e6d1d7d5624c304e4808e5c43e00c (patch)
tree2fa913c0458c84f90bcbc7a4ec4cbca65ca39608 /plugins/mod_dialback.lua
parente350fb8478bc304f4ca1ea1e29829b6d37066cb6 (diff)
downloadprosody-8717f83b219e6d1d7d5624c304e4808e5c43e00c.tar.gz
prosody-8717f83b219e6d1d7d5624c304e4808e5c43e00c.zip
mod_dialback: Change level of some log statements to be more appropriate
Diffstat (limited to 'plugins/mod_dialback.lua')
-rw-r--r--plugins/mod_dialback.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_dialback.lua b/plugins/mod_dialback.lua
index afee9d58..8d2bbd8f 100644
--- a/plugins/mod_dialback.lua
+++ b/plugins/mod_dialback.lua
@@ -26,7 +26,7 @@ function initiate_dialback(session)
-- 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 @@ module:hook("stanza/jabber:server:dialback:result", function(event)
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