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
|
@ -73,11 +73,11 @@ function async_resolver_methods:lookup(handler, qname, qtype, qclass)
|
|||
handler(peek);
|
||||
return;
|
||||
end
|
||||
log("debug", "Records for %s not in cache, sending query (%s)...", qname, tostring(coroutine.running()));
|
||||
log("debug", "Records for %s not in cache, sending query (%s)...", qname, coroutine.running());
|
||||
local ok, err = resolver:query(qname, qtype, qclass);
|
||||
if ok then
|
||||
coroutine.yield(setmetatable({ resolver, qclass or "IN", qtype or "A", qname, coroutine.running()}, query_mt)); -- Wait for reply
|
||||
log("debug", "Reply for %s (%s)", qname, tostring(coroutine.running()));
|
||||
log("debug", "Reply for %s (%s)", qname, coroutine.running());
|
||||
end
|
||||
if ok then
|
||||
ok, err = pcall(handler, resolver:peek(qname, qtype, qclass));
|
||||
|
@ -86,13 +86,13 @@ function async_resolver_methods:lookup(handler, qname, qtype, qclass)
|
|||
ok, err = pcall(handler, nil, err);
|
||||
end
|
||||
if not ok then
|
||||
log("error", "Error in DNS response handler: %s", tostring(err));
|
||||
log("error", "Error in DNS response handler: %s", err);
|
||||
end
|
||||
end)(resolver:peek(qname, qtype, qclass));
|
||||
end
|
||||
|
||||
function query_methods:cancel(call_handler, reason) -- luacheck: ignore 212/reason
|
||||
log("warn", "Cancelling DNS lookup for %s", tostring(self[4]));
|
||||
log("warn", "Cancelling DNS lookup for %s", self[4]);
|
||||
self[1].cancel(self[2], self[3], self[4], self[5], call_handler);
|
||||
end
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ local function attempt_connection(p)
|
|||
p:log("debug", "Next target to try is %s:%d", ip, port);
|
||||
local conn, err = server.addclient(ip, port, pending_connection_listeners, p.options.pattern or "*a", p.options.sslctx, conn_type, extra);
|
||||
if not conn then
|
||||
log("debug", "Connection attempt failed immediately: %s", tostring(err));
|
||||
log("debug", "Connection attempt failed immediately: %s", err);
|
||||
p.last_error = err or "unknown reason";
|
||||
return attempt_connection(p);
|
||||
end
|
||||
|
|
|
@ -40,7 +40,7 @@ local listener = { default_port = 80, default_mode = "*a" };
|
|||
local function handleerr(err) log("error", "Traceback[http]: %s", traceback(tostring(err), 2)); return err; end
|
||||
local function log_if_failed(req, ret, ...)
|
||||
if not ret then
|
||||
log("error", "Request '%s': error in callback: %s", req.id, tostring((...)));
|
||||
log("error", "Request '%s': error in callback: %s", req.id, (...));
|
||||
if not req.suppress_errors then
|
||||
error(...);
|
||||
end
|
||||
|
@ -150,7 +150,7 @@ function listener.onincoming(conn, data)
|
|||
local request = requests[conn];
|
||||
|
||||
if not request then
|
||||
log("warn", "Received response from connection %s with no request attached!", tostring(conn));
|
||||
log("warn", "Received response from connection %s with no request attached!", conn);
|
||||
return;
|
||||
end
|
||||
|
||||
|
|
|
@ -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