Software /
code /
prosody
Diff
core/certmanager.lua @ 8259:db063671b73e
certmanager: Add debug logging (thanks av6)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 23 Sep 2017 17:13:29 +0100 |
parent | 8159:3850993a9bda |
child | 8274:3798955049e3 |
line wrap: on
line diff
--- a/core/certmanager.lua Sat Sep 23 13:39:16 2017 +0100 +++ b/core/certmanager.lua Sat Sep 23 17:13:29 2017 +0100 @@ -58,6 +58,7 @@ local function find_cert(user_certs, name) local certs = resolve_path(config_path, user_certs or global_certificates); + log("debug", "Searching %s for a key and certificate for %s...", certs, name); for i = 1, #crt_try do local crt_path = certs .. crt_try[i]:format(name); local key_path = certs .. key_try[i]:format(name); @@ -66,13 +67,16 @@ if key_path:sub(-4) == ".crt" then key_path = key_path:sub(1, -4) .. "key"; if stat(key_path, "mode") == "file" then + log("debug", "Selecting certificate %s with key %s for %s", crt_path, key_path, name); return { certificate = crt_path, key = key_path }; end elseif stat(key_path, "mode") == "file" then + log("debug", "Selecting certificate %s with key %s for %s", crt_path, key_path, name); return { certificate = crt_path, key = key_path }; end end end + log("debug", "No certificate/key found for %s", name); end local function find_host_cert(host)