1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-20 19:37:03 +00:00

Update to 8.1.0 - a new logger implemented as a solution for https://github.com/kataras/iris/issues/680

Former-commit-id: 765b43602655fad7f525ca7a5f7f297a6167d075
This commit is contained in:
kataras
2017-07-26 15:30:20 +03:00
parent 726d89fd1b
commit 345e7280a1
14 changed files with 78 additions and 50 deletions

View File

@@ -32,11 +32,11 @@ func main() {
app := iris.New()
// attach the file as logger, remember, iris' app logger is just an io.Writer.
app.Logger().Out = newLogFile()
app.Logger().SetOutput(newLogFile())
app.Get("/", func(ctx context.Context) {
// for the sake of simplicity, in order see the logs at the ./_today_.txt
ctx.Application().Logger().Infoln("Request path: " + ctx.Path())
ctx.Application().Logger().Info("Request path: " + ctx.Path())
ctx.Writef("hello")
})
@@ -44,7 +44,7 @@ func main() {
// and open the ./logs.txt file
if err := app.Run(iris.Addr(":8080"), iris.WithoutBanner); err != nil {
if err != iris.ErrServerClosed {
app.Logger().Warnln("Shutdown with error: " + err.Error())
app.Logger().Warn("Shutdown with error: " + err.Error())
}
}
}