1
0
mirror of https://github.com/astaxie/beego.git synced 2024-12-23 11:00:50 +00:00

Merge pull request #2971 from PureWhiteWu/fix_typo

fix a typo
This commit is contained in:
astaxie 2017-12-10 18:47:54 +08:00 committed by GitHub
commit aef2f1c66e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
app.go
View File

@ -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)