Modify DEBUG messages to get ACME certificates

This commit is contained in:
NicoMen 2018-01-10 15:20:04 +01:00 committed by Traefiker
parent 044d87d96d
commit d0f3ad6024
2 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@ type challengeProvider struct {
}
func (c *challengeProvider) getCertificate(domain string) (cert *tls.Certificate, exists bool) {
log.Debugf("Challenge GetCertificate %s", domain)
log.Debugf("Looking for an existing ACME challenge for %s...", domain)
if !strings.HasSuffix(domain, ".acme.invalid") {
return nil, false
}