net.httpserver: Don't log the response body (can be binary data...)

This commit is contained in:
Matthew Wild 2009-04-23 21:04:07 +01:00
parent 82a3b3c3eb
commit 37db6110c3

View file

@ -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