# HG changeset patch # User Kim Alvefur # Date 1570904131 -7200 # Node ID 76bd77ad6a2af02417adc9df8791ae411168961c # Parent d86b1304451a4528af467055fa55923f629bd7cc server_epoll: Log full string represestation when connected Since they may have been unknown when the connection was created. diff -r d86b1304451a -r 76bd77ad6a2a net/server_epoll.lua --- a/net/server_epoll.lua Sat Oct 12 20:12:04 2019 +0200 +++ b/net/server_epoll.lua Sat Oct 12 20:15:31 2019 +0200 @@ -698,8 +698,8 @@ -- Connected! function interface:onconnect() - self:debug("Connected"); self:updatenames(); + self:debug("Connected (%s)", self); self.onconnect = noop; self:on("connect"); end