diff options
author | Kim Alvefur <zash@zash.se> | 2018-07-22 19:44:58 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-07-22 19:44:58 +0200 |
commit | a22d4880c43b57d13116f4c72429e06c5784c7fc (patch) | |
tree | a7170c859f1c66b84a7f6fc0ec646b57edb6087a | |
parent | 9ef04c0eb0d7c696789398e5f071f73ca969a9f7 (diff) | |
download | prosody-a22d4880c43b57d13116f4c72429e06c5784c7fc.tar.gz prosody-a22d4880c43b57d13116f4c72429e06c5784c7fc.zip |
core.stanza_router: Reduce logging of common routing (#776)
-rw-r--r-- | core/stanza_router.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 0be92f88..4caa89b6 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -207,7 +207,6 @@ function core_route_stanza(origin, stanza) -- old stanza routing code removed core_post_stanza(origin, stanza); else - log("debug", "Routing to remote..."); local host_session = hosts[from_host]; if not host_session then log("error", "No hosts[from_host] (please report): %s", tostring(stanza)); @@ -218,7 +217,7 @@ function core_route_stanza(origin, stanza) origin = origin, stanza = stanza, from_host = from_host, to_host = host }); stanza.attr.xmlns = xmlns; -- reset if not routed then - log("debug", "... no, just kidding."); + log("debug", "Could not route stanza to remote"); if stanza.attr.type == "error" or (stanza.name == "iq" and stanza.attr.type == "result") then return; end core_route_stanza(host_session, st.error_reply(stanza, "cancel", "not-allowed", "Communication with remote domains is not enabled")); |