From 71cf366b381d3864fe8afc8a58570feaa9ae2c2e Mon Sep 17 00:00:00 2001 From: Alexander Yastrebov Date: Tue, 21 Nov 2023 16:18:35 +0100 Subject: [PATCH] worker: log ingress details without matching certificate Signed-off-by: Alexander Yastrebov --- worker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker.go b/worker.go index 29a8d104..86e9beea 100644 --- a/worker.go +++ b/worker.go @@ -432,7 +432,7 @@ func matchIngressesToLoadBalancers( } else { certificateARNs = certs.FindMatchingCertificateIDs(ingress.Hostnames) if len(certificateARNs) == 0 { - log.Errorf("No certificates found for %v", ingress.Hostnames) + log.Errorf("No certificates found for hostnames %v of %s", ingress.Hostnames, ingress) continue } }