mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.session: Remove tostring call from logging
Taken care of by loggingmanager now
This commit is contained in:
parent
358ade2979
commit
0e16eeb216
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ local function set_send(session)
|
||||||
local conn = session.conn;
|
local conn = session.conn;
|
||||||
if not conn then
|
if not conn then
|
||||||
function session.send(data)
|
function session.send(data)
|
||||||
session.log("debug", "Discarding data sent to unconnected session: %s", tostring(data));
|
session.log("debug", "Discarding data sent to unconnected session: %s", data);
|
||||||
return false;
|
return false;
|
||||||
end
|
end
|
||||||
return session;
|
return session;
|
||||||
|
@ -47,7 +47,7 @@ local function set_send(session)
|
||||||
if t then
|
if t then
|
||||||
local ret, err = w(conn, t);
|
local ret, err = w(conn, t);
|
||||||
if not ret then
|
if not ret then
|
||||||
session.log("debug", "Error writing to connection: %s", tostring(err));
|
session.log("debug", "Error writing to connection: %s", err);
|
||||||
return false, err;
|
return false, err;
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue