From 619cd2d908a6080bf02486e4ed7811a575cc3de4 Mon Sep 17 00:00:00 2001 From: Pure White Date: Fri, 8 Dec 2017 23:01:21 +0800 Subject: [PATCH] fix a typo --- app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.go b/app.go index 0c07117a..3facfbb7 100644 --- a/app.go +++ b/app.go @@ -167,7 +167,7 @@ func (app *App) Run(mws ...MiddleWare) { if BConfig.Listen.HTTPSPort != 0 { app.Server.Addr = fmt.Sprintf("%s:%d", BConfig.Listen.HTTPSAddr, BConfig.Listen.HTTPSPort) } else if BConfig.Listen.EnableHTTP { - BeeLogger.Info("Start https server error, confict with http.Please reset https port") + BeeLogger.Info("Start https server error, conflict with http.Please reset https port") return } logs.Info("https server Running on https://%s", app.Server.Addr)