net.http: Add missing log parameter

This commit is contained in:
Matthew Wild 2023-02-09 22:37:54 +00:00
parent a4556fc67a
commit 28e3b19ca1

View file

@ -94,7 +94,7 @@ local function request_reader(request, data, err)
r.body_length and ("%d bytes"):format(r.body_length) or "unknown length"
);
if request.streaming_handler then
log("debug", "Request '%s': Streaming via handler");
log("debug", "Request '%s': Streaming via handler", request.id);
r.body_sink, finalize_sink = request.streaming_handler(r);
end
return;