From c8984e6a6abdc8feb304e9e27db6f86f55c7ce77 Mon Sep 17 00:00:00 2001 From: Sylvain Rabot Date: Thu, 24 Oct 2019 01:10:04 +0200 Subject: [PATCH] Use debug for log about skipping addition of cert --- pkg/tls/certificate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/tls/certificate.go b/pkg/tls/certificate.go index 4a43f2a2c..1e700f111 100644 --- a/pkg/tls/certificate.go +++ b/pkg/tls/certificate.go @@ -189,7 +189,7 @@ func (c *Certificate) AppendCertificate(certs map[string]map[string]*tls.Certifi } } if certExists { - log.Warnf("Skipping addition of certificate for domain(s) %q, to EntryPoint %s, as it already exists for this Entrypoint.", certKey, ep) + log.Debugf("Skipping addition of certificate for domain(s) %q, to EntryPoint %s, as it already exists for this Entrypoint.", certKey, ep) } else { log.Debugf("Adding certificate for domain(s) %s", certKey) certs[ep][certKey] = &tlsCert