net.httpserver: Reduce log level of 'request left open' message

remotes/origin/sasl
Matthew Wild 17 years ago
parent a0b8648d1f
commit e37a04496d
  1. 2
      net/httpserver.lua

@ -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…
Cancel
Save