net.httpserver: Don't upset logger when response is nil

This commit is contained in:
Matthew Wild 2009-06-28 14:17:07 +01:00
parent fc9b65727f
commit 0e37b231f2

View file

@ -52,7 +52,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, response);
log("debug", "Sending response to %s: %s", request.id or "<none>", response or "<none>");
resp = { "HTTP/1.0 200 OK\r\n" };
t_insert(resp, "Connection: close\r\n");