beego: change the error tips

This commit is contained in:
astaxie 2014-05-20 15:34:27 +08:00
parent 18a02d7d60
commit f215aa4810
1 changed files with 1 additions and 1 deletions

2
app.go
View File

@ -91,7 +91,7 @@ func (app *App) Run() {
}
err := s.ListenAndServeTLS(HttpCertFile, HttpKeyFile)
if err != nil {
BeeLogger.Critical("ListenAndServe: ", err)
BeeLogger.Critical("ListenAndServeTLS: ", err)
time.Sleep(100 * time.Microsecond)
endRunning <- true
}