mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_dialback: Change level of some log statements to be more appropriate
This commit is contained in:
parent
e350fb8478
commit
8717f83b21
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ function initiate_dialback(session)
|
||||||
-- generate dialback key
|
-- generate dialback key
|
||||||
session.dialback_key = generate_dialback(session.streamid, session.to_host, session.from_host);
|
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.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
|
end
|
||||||
|
|
||||||
function verify_dialback(id, to, from, key)
|
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
|
if not hosts[to] then
|
||||||
-- Not a host that we serve
|
-- 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");
|
origin:close("host-unknown");
|
||||||
return true;
|
return true;
|
||||||
elseif not from then
|
elseif not from then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue