Commit f215aa48 authored by astaxie's avatar astaxie

beego: change the error tips

parent 18a02d7d
...@@ -91,7 +91,7 @@ func (app *App) Run() { ...@@ -91,7 +91,7 @@ func (app *App) Run() {
} }
err := s.ListenAndServeTLS(HttpCertFile, HttpKeyFile) err := s.ListenAndServeTLS(HttpCertFile, HttpKeyFile)
if err != nil { if err != nil {
BeeLogger.Critical("ListenAndServe: ", err) BeeLogger.Critical("ListenAndServeTLS: ", err)
time.Sleep(100 * time.Microsecond) time.Sleep(100 * time.Microsecond)
endRunning <- true endRunning <- true
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment