# HG changeset patch # User Kim Alvefur # Date 1642264627 -3600 # Node ID 6a772a0c0dfd6bde562574b7b32be9fd6ec52344 # Parent 8b57362f1176d8f9d322d93acbba5f2e493dc25b mod_http: Increase severity of loading unreachable http modules This is either caused by an earlier failure to bind http/s ports, in which case that should be corrected, or explicitly disbling the http/s ports, in which case ... why enable http modules? Suggested by jonas’ diff -r 8b57362f1176 -r 6a772a0c0dfd plugins/mod_http.lua --- a/plugins/mod_http.lua Sat Nov 27 12:26:15 2021 +0100 +++ b/plugins/mod_http.lua Sat Jan 15 17:37:07 2022 +0100 @@ -226,7 +226,7 @@ if services:get("https") or services:get("http") then module:log("info", "Serving '%s' at %s", app_name, module:http_url(app_name, app_path)); elseif prosody.process_type == "prosody" then - module:log("warn", "Not listening on any ports, '%s' will be unreachable", app_name); + module:log("error", "Not listening on any ports, '%s' will be unreachable", app_name); end end