diff options
author | Kim Alvefur <zash@zash.se> | 2019-10-12 20:15:31 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-10-12 20:15:31 +0200 |
commit | 5e1bd07ad0b604c7cda48f73eead8a60a8be6871 (patch) | |
tree | 63434947bdab341024b26977f6ca35eb93ed43a1 /net | |
parent | cabc1a2443672e086fd6e68ca8ca09f972450c82 (diff) | |
download | prosody-5e1bd07ad0b604c7cda48f73eead8a60a8be6871.tar.gz prosody-5e1bd07ad0b604c7cda48f73eead8a60a8be6871.zip |
server_epoll: Log full string represestation when connected
Since they may have been unknown when the connection was created.
Diffstat (limited to 'net')
-rw-r--r-- | net/server_epoll.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/server_epoll.lua b/net/server_epoll.lua index 3745b426..9feba360 100644 --- a/net/server_epoll.lua +++ b/net/server_epoll.lua @@ -698,8 +698,8 @@ end -- Connected! function interface:onconnect() - self:debug("Connected"); self:updatenames(); + self:debug("Connected (%s)", self); self.onconnect = noop; self:on("connect"); end |