diff options
author | Kim Alvefur <zash@zash.se> | 2023-05-14 18:48:20 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2023-05-14 18:48:20 +0200 |
commit | 223a8b69a443e17981926f8524c892ccbb6f09ec (patch) | |
tree | faae7d658967ceb799d8ea48e8452c2e3c28c2c3 /net | |
parent | ff0b9242e3d4cfdf08bb84fbbbcad6ca2e72cb89 (diff) | |
download | prosody-223a8b69a443e17981926f8524c892ccbb6f09ec.tar.gz prosody-223a8b69a443e17981926f8524c892ccbb6f09ec.zip |
net.http.server: Remove "Firing event" logs, use event logging instead
Since these are noisy and we have the thing in util.helpers to log
events fired.
The new status line events are meant to replace these as they include
more useful info.
Diffstat (limited to 'net')
-rw-r--r-- | net/http/server.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/net/http/server.lua b/net/http/server.lua index 38c54d8c..fdcbde4a 100644 --- a/net/http/server.lua +++ b/net/http/server.lua @@ -289,11 +289,9 @@ function handle_request(conn, request, finish_cb) local global_event = request.method.." "..request.path:match("[^?]*"); local payload = { request = request, response = response }; - request.log("debug", "Firing event: %s", global_event); local result = events.fire_event(global_event, payload); if result == nil and is_head_request then local global_head_event = "GET "..request.path:match("[^?]*"); - request.log("debug", "Firing event: %s", global_head_event); result = events.fire_event(global_head_event, payload); end if result == nil then @@ -314,12 +312,10 @@ function handle_request(conn, request, finish_cb) end local host_event = request.method.." "..host..request.path:match("[^?]*"); - request.log("debug", "Firing event: %s", host_event); result = events.fire_event(host_event, payload); if result == nil and is_head_request then local host_head_event = "GET "..host..request.path:match("[^?]*"); - request.log("debug", "Firing event: %s", host_head_event); result = events.fire_event(host_head_event, payload); end end |