# HG changeset patch # User Kim Alvefur # Date 1575059408 -3600 # Node ID 5ce6cbb5ce6a4cd8cf2c1021a6614c2734b6e617 # Parent 7456eaa83b154e10225408ac33d6d633b930e8d3 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. diff -r 7456eaa83b15 -r 5ce6cbb5ce6a plugins/mod_http.lua --- a/plugins/mod_http.lua Fri Nov 29 18:15:23 2019 +0100 +++ b/plugins/mod_http.lua Fri Nov 29 21:30:08 2019 +0100 @@ -173,7 +173,7 @@ 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