mod_admin_shell: Allow logging HTTP events with debug:logevents("http")

Mirroring debug:events("http"), and to replace the "Firing event: GET /"
log lines in net.http.server
This commit is contained in:
Kim Alvefur 2023-05-14 19:02:26 +02:00
parent f3ec84d5ef
commit c71ab7f1ef

View file

@ -1929,6 +1929,9 @@ def_env.debug = {};
function def_env.debug:logevents(host)
if host == "*" then
helpers.log_events(prosody.events);
elseif host == "http" then
helpers.log_events(require "prosody.net.http.server"._events);
return true
else
helpers.log_host_events(host);
end