mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
f3ec84d5ef
commit
c71ab7f1ef
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue