diff options
author | Matthew Wild <mwild1@gmail.com> | 2025-04-03 16:53:48 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2025-04-03 16:53:48 +0100 |
commit | bc13ac7e716ee60ce7a548444cdc1aa6ad41c589 (patch) | |
tree | d5e435ca73bd6e7eeb69041895010f30c91acb10 | |
parent | e6849bb76ee3682ece53d7434bb1e94a89c91cbc (diff) | |
download | prosody-bc13ac7e716ee60ce7a548444cdc1aa6ad41c589.tar.gz prosody-bc13ac7e716ee60ce7a548444cdc1aa6ad41c589.zip |
certmanager: Improve logging for all cases where certs are skipped
-rw-r--r-- | core/certmanager.lua | 6 |
1 files changed, 5 insertions, 1 deletions
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); |