diff options
author | Kim Alvefur <zash@zash.se> | 2018-02-24 19:40:18 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-02-24 19:40:18 +0100 |
commit | 65752fde14f426eaf4a7f92e85badd93b78a4cfb (patch) | |
tree | 79ea2d75fe539f286301c46260b2d4139534ad6b /core | |
parent | 599fc103ab554231f71859df3213ef964f519b2e (diff) | |
download | prosody-65752fde14f426eaf4a7f92e85badd93b78a4cfb.tar.gz prosody-65752fde14f426eaf4a7f92e85badd93b78a4cfb.zip |
hostmanager: Add a logging close method in case something tries to close the origin of local-originated stanzas (see #1084)
Diffstat (limited to 'core')
-rw-r--r-- | core/hostmanager.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/hostmanager.lua b/core/hostmanager.lua index 643724c2..106a8ef2 100644 --- a/core/hostmanager.lua +++ b/core/hostmanager.lua @@ -92,6 +92,9 @@ function activate(host, host_config) send = host_send; modules = {}; }; + function host_session:close(reason) + log("debug", "Attempt to close host session %s with reason: %s", self.host, reason); + end setmetatable(host_session, host_mt); if not host_config.component_module then -- host host_session.type = "local"; |