mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 14:47:37 +03:00
net.httpserver: Don't log the response body (can be binary data...)
This commit is contained in:
parent
82a3b3c3eb
commit
37db6110c3
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ local function send_response(request, response)
|
|||
-- Write status line
|
||||
local resp;
|
||||
if response.body then
|
||||
log("debug", "Sending response to %s: %s", request.id, response.body);
|
||||
log("debug", "Sending response to %s", request.id);
|
||||
resp = { "HTTP/1.0 ", response.status or "200 OK", "\r\n"};
|
||||
local h = response.headers;
|
||||
if h then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue