core.certmanager: Expand debug messages about cert lookups in index

Answers my recurring question of
> Using cert "certs/example.com.crt" from index
... for what?
This commit is contained in:
Kim Alvefur 2022-05-16 11:39:17 +02:00
parent dc79c92cbc
commit 1f668fed00

View file

@ -159,7 +159,7 @@ local function find_cert_in_index(index, host)
if certs then
local cert_filename, services = next(certs);
if services["*"] then
log("debug", "Using cert %q from index", cert_filename);
log("debug", "Using cert %q from index for host %q", cert_filename, host);
return {
certificate = cert_filename,
key = find_matching_key(cert_filename),
@ -185,7 +185,7 @@ local function find_service_cert(service, port)
for _, certs in pairs(cert_index) do
for cert_filename, services in pairs(certs) do
if services[service] or services["*"] then
log("debug", "Using cert %q from index", cert_filename);
log("debug", "Using cert %q from index for service %s port %d", cert_filename, service, port);
return {
certificate = cert_filename,
key = find_matching_key(cert_filename),