mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
s2smanager: Generate session names used for logging the same way everywhere
This commit is contained in:
parent
4070965899
commit
4517552d8b
3 changed files with 3 additions and 3 deletions
|
@ -260,7 +260,7 @@ function listener.onconnect(conn)
|
|||
local session = { type = "component_unauthed", conn = conn, send = function (data) return _send(conn, tostring(data)); end };
|
||||
|
||||
-- Logging functions --
|
||||
local conn_name = "jcp"..tostring(conn):match("[a-f0-9]+$");
|
||||
local conn_name = "jcp"..tostring(session):match("[a-f0-9]+$");
|
||||
session.log = logger.init(conn_name);
|
||||
session.close = session_close;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue