mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.*: Remove tostring call from logging
Taken care of by loggingmanager now
This commit is contained in:
parent
40b1e3e0ed
commit
75bfec7731
4 changed files with 9 additions and 9 deletions
|
@ -131,7 +131,7 @@ end
|
|||
function websocket_methods:close(code, reason)
|
||||
if self.readyState < 2 then
|
||||
code = code or 1000;
|
||||
log("debug", "closing WebSocket with code %i: %s" , code , tostring(reason));
|
||||
log("debug", "closing WebSocket with code %i: %s" , code , reason);
|
||||
self.readyState = 2;
|
||||
local conn = self.conn;
|
||||
conn:write(frames.build_close(code, reason, true));
|
||||
|
@ -245,7 +245,7 @@ local function connect(url, ex, listeners)
|
|||
or (protocol and not protocol[r.headers["sec-websocket-protocol"]])
|
||||
then
|
||||
s.readyState = 3;
|
||||
log("warn", "WebSocket connection to %s failed: %s", url, tostring(b));
|
||||
log("warn", "WebSocket connection to %s failed: %s", url, b);
|
||||
if s.onerror then s:onerror("connecting-failed"); end
|
||||
return;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue