mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
net.httpserver: Don't log response bodies!
This commit is contained in:
parent
e58d6d5d62
commit
fcfb1213d2
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ local function send_response(request, response)
|
|||
end
|
||||
else
|
||||
-- Response we have is just a string (the body)
|
||||
log("debug", "Sending response to %s: %s", request.id or "<none>", response or "<none>");
|
||||
log("debug", "Sending 200 response to %s", request.id or "<none>");
|
||||
|
||||
resp = { "HTTP/1.0 200 OK\r\n" };
|
||||
t_insert(resp, "Connection: close\r\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue