mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
core.s2smanager: Remove use of tostring in logging
This is now performed by loggingmanager
This commit is contained in:
parent
ab82920e54
commit
cc653ef0d9
1 changed files with 2 additions and 2 deletions
|
@ -75,8 +75,8 @@ local function retire_session(session, reason)
|
|||
|
||||
session.destruction_reason = reason;
|
||||
|
||||
function session.send(data) log("debug", "Discarding data sent to resting session: %s", tostring(data)); end
|
||||
function session.data(data) log("debug", "Discarding data received from resting session: %s", tostring(data)); end
|
||||
function session.send(data) log("debug", "Discarding data sent to resting session: %s", data); end
|
||||
function session.data(data) log("debug", "Discarding data received from resting session: %s", data); end
|
||||
session.thread = { run = function (_, data) return session.data(data) end };
|
||||
session.sends2s = session.send;
|
||||
return setmetatable(session, resting_session);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue