mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
net.httpserver: Reduce log level of 'request left open' message
This commit is contained in:
parent
a0b8648d1f
commit
e37a04496d
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ local function call_callback(request, err)
|
||||||
if response then
|
if response then
|
||||||
if response == true and not request.destroyed then
|
if response == true and not request.destroyed then
|
||||||
-- Keep connection open, we will reply later
|
-- Keep connection open, we will reply later
|
||||||
log("warn", "Request %s left open, on_destroy is %s", request.id, tostring(request.on_destroy));
|
log("debug", "Request %s left open, on_destroy is %s", request.id, tostring(request.on_destroy));
|
||||||
elseif response ~= true then
|
elseif response ~= true then
|
||||||
-- Assume response
|
-- Assume response
|
||||||
send_response(request, response);
|
send_response(request, response);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue