aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2025-04-03 19:47:16 +0100
committerMatthew Wild <mwild1@gmail.com>2025-04-03 19:47:16 +0100
commit8d281ac12189135237c72b066c143547146f5e8e (patch)
treec9b8a77879e6bf3535465e50cce3a974af8b607a
parente23d50de108046388241a5ae08a4fda2239519f4 (diff)
downloadprosody-8d281ac12189135237c72b066c143547146f5e8e.tar.gz
prosody-8d281ac12189135237c72b066c143547146f5e8e.zip
certmanager: Remove obsolete index log (replaced by shell command)
This information can now be retrieved on-demand using the debug:cert_index() command, so we don't need to log it after every scan (it is rather verbose).
-rw-r--r--core/certmanager.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
index c08bcc84..b13d57b3 100644
--- a/core/certmanager.lua
+++ b/core/certmanager.lua
@@ -127,7 +127,6 @@ local function index_certs(dir, files_by_name, depth_limit)
log("debug", "Skipping non-certificate (based on filename): %s", full);
end
end
- log("debug", "Certificate index in %s: %q", dir, files_by_name);
-- | hostname | filename | service |
return files_by_name;
end