mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http: Log served URLs at 'info' level
These are similar to the "activated service" messages from portmanager and similarily useful for the service admin to know even if they're not debugging anything.
This commit is contained in:
parent
35d07425e3
commit
6fd9868ed5
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ function module.add_host(module)
|
|||
end
|
||||
local services = portmanager.get_active_services();
|
||||
if services:get("https") or services:get("http") then
|
||||
module:log("debug", "Serving '%s' at %s", app_name, module:http_url(app_name, app_path));
|
||||
module:log("info", "Serving '%s' at %s", app_name, module:http_url(app_name, app_path));
|
||||
else
|
||||
module:log("warn", "Not listening on any ports, '%s' will be unreachable", app_name);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue