add server host:port info when starting app

This commit is contained in:
Pengfei Xue 2013-11-26 15:30:59 +08:00
parent b16ef12ac0
commit e823b6ea95
1 changed files with 5 additions and 0 deletions

5
app.go
View File

@ -28,10 +28,14 @@ func (app *App) Run() {
if HttpPort != 0 {
addr = fmt.Sprintf("%s:%d", HttpAddr, HttpPort)
}
BeeLogger.Info("Runing on %s", addr)
var (
err error
l net.Listener
)
if UseFcgi {
if HttpPort == 0 {
l, err = net.Listen("unix", addr)
@ -72,6 +76,7 @@ func (app *App) Run() {
}
}
}
if err != nil {
BeeLogger.Critical("ListenAndServe: ", err)
time.Sleep(100 * time.Microsecond)