1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-06 06:00:18 +00:00

make the BeegoLogger a adapter of http server ErrorLog

This commit is contained in:
JessonChan
2016-03-11 14:45:39 +08:00
parent 9872041f12
commit c92c3fc8b5
2 changed files with 19 additions and 1 deletions

2
app.go
View File

@ -16,6 +16,7 @@ package beego
import (
"fmt"
"log"
"net"
"net/http"
"net/http/fcgi"
@ -95,6 +96,7 @@ func (app *App) Run() {
app.Server.Handler = app.Handlers
app.Server.ReadTimeout = time.Duration(BConfig.Listen.ServerTimeOut) * time.Second
app.Server.WriteTimeout = time.Duration(BConfig.Listen.ServerTimeOut) * time.Second
app.Server.ErrorLog = log.New(BeeLogger, "", 0)
// run graceful mode
if BConfig.Listen.Graceful {