Remove redundant printf
This commit is contained in:
parent
e2956cae82
commit
f0569af367
1
app.go
1
app.go
|
@ -176,7 +176,6 @@ func run(args options) {
|
|||
for config.TLS.PortHTTPS == 0 || config.TLS.PrivateKey == "" || config.TLS.CertificateChain == "" { // sleep until neccessary data is supplied
|
||||
httpsServer.cond.Wait()
|
||||
}
|
||||
log.Printf("%+v", config.TLS)
|
||||
address := net.JoinHostPort(config.BindHost, strconv.Itoa(config.TLS.PortHTTPS))
|
||||
cert, err := tls.X509KeyPair([]byte(config.TLS.CertificateChain), []byte(config.TLS.PrivateKey))
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in New Issue