From f0569af367b31742336ffefcb6df7839f446ffc6 Mon Sep 17 00:00:00 2001 From: Eugene Bujak Date: Wed, 13 Feb 2019 11:07:24 +0300 Subject: [PATCH] Remove redundant printf --- app.go | 1 - 1 file changed, 1 deletion(-) diff --git a/app.go b/app.go index d50aadb8..b57d052c 100644 --- a/app.go +++ b/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 {