From bc13ac7e716ee60ce7a548444cdc1aa6ad41c589 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Thu, 3 Apr 2025 16:53:48 +0100 Subject: certmanager: Improve logging for all cases where certs are skipped --- core/certmanager.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/certmanager.lua b/core/certmanager.lua index 3acddf73..c08bcc84 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -116,11 +116,15 @@ local function index_certs(dir, files_by_name, depth_limit) else log("debug", "Skipping expired certificate: %s", full); end + else + log("debug", "Skipping non-certificate (based on contents): %s", full); end f:close(); elseif err then - log("debug", "Failed to open file for indexing: %s", full); + log("debug", "Skipping file due to error: %s", err); end + else + log("debug", "Skipping non-certificate (based on filename): %s", full); end end log("debug", "Certificate index in %s: %q", dir, files_by_name); -- cgit v1.2.3