mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
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.
This commit is contained in:
parent
ff0b9242e3
commit
223a8b69a4
1 changed files with 0 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue