From 44b46dac557997b025035ec47220c01a1df7443c Mon Sep 17 00:00:00 2001 From: Jannis Mattheis Date: Fri, 30 Mar 2018 19:02:52 +0200 Subject: [PATCH] Remove unnecessary println --- runner/runner.go | 1 - 1 file changed, 1 deletion(-) diff --git a/runner/runner.go b/runner/runner.go index 3db9a9b..5860c21 100644 --- a/runner/runner.go +++ b/runner/runner.go @@ -18,7 +18,6 @@ func Run(engine *gin.Engine, conf *config.Configuration) { var httpHandler http.Handler = engine if *conf.Server.SSL.Enabled { - fmt.Println(*conf.Server.SSL.RedirectToHTTPS) if *conf.Server.SSL.RedirectToHTTPS { httpHandler = redirectToHTTPS(string(conf.Server.SSL.Port)) }