mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +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 == true and not request.destroyed then
|
||||
-- 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
|
||||
-- Assume response
|
||||
send_response(request, response);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue