@@ -5,7 +5,6 @@ import (
"crypto/x509"
"embed"
"encoding/pem"
- "fmt"
"io"
"log"
"os"
@@ -170,7 +169,6 @@ func (m *Manager) GetCert(helloInfo *tls.ClientHelloInfo) (*tls.Certificate, err
} else if m.CertMatchExists(helloInfo.ServerName) {
//Use x509
pubKey, priKey = m.GetCertByX509CNHostname(helloInfo.ServerName)
- fmt.Println(pubKey, priKey)
} else {
//Fallback to legacy method of matching certificates
/*