mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
net.httpserver: Log when an error occurs inside a HTTP request handler
This commit is contained in:
parent
bbb4eabf46
commit
404c107e3f
1 changed files with 1 additions and 0 deletions
|
@ -122,6 +122,7 @@ local function request_reader(request, data, startpos)
|
|||
call_callback(request);
|
||||
end
|
||||
local function error_cb(r)
|
||||
log("error", "Error in HTTP server handler: %s", r or "connection-closed");
|
||||
call_callback(request, r or "connection-closed");
|
||||
destroy_request(request);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue