diff options
author | Matthew Wild <mwild1@gmail.com> | 2023-02-09 22:37:54 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2023-02-09 22:37:54 +0000 |
commit | 28e3b19ca114cc499d02c32bd470670b349c09bf (patch) | |
tree | ab69ed907952490e38a840e2c909c6598136e258 /net | |
parent | a4556fc67aa2036bc0f7d95d5f61ba7e95412304 (diff) | |
download | prosody-28e3b19ca114cc499d02c32bd470670b349c09bf.tar.gz prosody-28e3b19ca114cc499d02c32bd470670b349c09bf.zip |
net.http: Add missing log parameter
Diffstat (limited to 'net')
-rw-r--r-- | net/http.lua | 2 |
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; |