normalize log messages to use lowercase

This commit is contained in:
A.Unger
2020-11-04 16:00:09 +01:00
parent a36c9cc3e6
commit 157e460945
9 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -133,13 +133,13 @@ func Server(opts ...Option) (*LdapSvc, error) {
// ListenAndServe listens on the TCP network address s.c.LDAP.Listen
func (s *LdapSvc) ListenAndServe() error {
s.log.V(3).Info("LDAP server listening", "address", s.ldap.Listen)
s.log.V(3).Info("ldap server listening", "address", s.ldap.Listen)
return s.l.ListenAndServe(s.ldap.Listen)
}
// ListenAndServeTLS listens on the TCP network address s.c.LDAPS.Listen
func (s *LdapSvc) ListenAndServeTLS() error {
s.log.V(3).Info("LDAPS server listening", "address", s.ldaps.Listen)
s.log.V(3).Info("ldaps server listening", "address", s.ldaps.Listen)
return s.l.ListenAndServeTLS(
s.ldaps.Listen,
s.ldaps.Cert,