aboutsummaryrefslogtreecommitdiffstats
path: root/net/http.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2023-02-09 22:58:01 +0000
committerMatthew Wild <mwild1@gmail.com>2023-02-09 22:58:01 +0000
commitfbfe255e12c980024d4147a77c5de1c3f727016c (patch)
tree76272fd2c00ff66e34a373bfda1a1cd430e51adb /net/http.lua
parent8bc31437bc1431ca13f1f96e3ddf52633fa99303 (diff)
parent0fd88a07a4951d6e06e20f7c3dcc5c115cd78ace (diff)
downloadprosody-fbfe255e12c980024d4147a77c5de1c3f727016c.tar.gz
prosody-fbfe255e12c980024d4147a77c5de1c3f727016c.zip
Merge 0.12->trunk
Diffstat (limited to 'net/http.lua')
-rw-r--r--net/http.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http.lua b/net/http.lua
index 332ee250..aa435719 100644
--- a/net/http.lua
+++ b/net/http.lua
@@ -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;