Merge pull request #1031 from jcmoraisjr/jm-fix-noisy-log

Change missing secret name log level to V(3)
This commit is contained in:
Manuel Alejandro de Brito Fontes 2017-07-27 13:22:39 -04:00 committed by GitHub
commit 37375ae6d2

View file

@ -1088,7 +1088,7 @@ func (ic *GenericController) createServers(data []interface{},
}
if tlsSecretName == "" {
glog.Warningf("host %v is listed on tls section but secretName is empty. Using default cert", host)
glog.V(3).Infof("host %v is listed on tls section but secretName is empty. Using default cert", host)
servers[host].SSLCertificate = defaultPemFileName
servers[host].SSLPemChecksum = defaultPemSHA
continue