Add DEBUG log when no provided certificate can check a domain

This commit is contained in:
NicoMen 2018-02-27 11:10:03 +01:00 committed by Traefiker Bot
parent 8da038041d
commit c864a7297b

View file

@ -484,6 +484,7 @@ func (s *serverEntryPoint) getCertificate(clientHello *tls.ClientHelloInfo) (*tl
}
}
}
log.Debugf("No certificate provided dynamically can check the domain %q, a per default certificate will be used.", domainToCheck)
}
return nil, nil
}