mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
5e4b63acb2
# FAQ ### Looking for free support? http://support.iris-go.com https://kataras.rocket.chat/channel/iris ### Looking for previous versions? https://github.com/kataras/iris#version ### Should I upgrade my Iris? Developers are not forced to upgrade if they don't really need it. Upgrade whenever you feel ready. > Iris uses the [vendor directory](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo) feature, so you get truly reproducible builds, as this method guards against upstream renames and deletes. **How to upgrade**: Open your command-line and execute this command: `go get -u github.com/kataras/iris`. For further installation support, please click [here](http://support.iris-go.com/d/16-how-to-install-iris-web-framework). ### About our new home page http://iris-go.com Thanks to [Santosh Anand](https://github.com/santoshanand) the http://iris-go.com has been upgraded and it's really awesome! [Santosh](https://github.com/santoshanand) is a freelancer, he has a great knowledge of nodejs and express js, Android, iOS, React Native, Vue.js etc, if you need a developer to find or create a solution for your problem or task, please contact with him. The amount of the next two or three donations you'll send they will be immediately transferred to his own account balance, so be generous please! Read more at https://github.com/kataras/iris/blob/master/HISTORY.md Former-commit-id: eec2d71bbe011d6b48d2526eb25919e36e5ad94e
69 lines
1.5 KiB
Go
69 lines
1.5 KiB
Go
// Copyright 2017 Gerasimos Maropoulos, ΓΜ. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package loger provides request logging via middleware. See _examples/beginner/request-logger
|
|
package logger
|
|
|
|
import (
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/kataras/iris/context"
|
|
)
|
|
|
|
type requestLoggerMiddleware struct {
|
|
config Config
|
|
}
|
|
|
|
// Serve serves the middleware
|
|
func (l *requestLoggerMiddleware) ServeHTTP(ctx context.Context) {
|
|
//all except latency to string
|
|
var status, ip, method, path string
|
|
var latency time.Duration
|
|
var startTime, endTime time.Time
|
|
path = ctx.Path()
|
|
method = ctx.Method()
|
|
|
|
startTime = time.Now()
|
|
|
|
ctx.Next()
|
|
//no time.Since in order to format it well after
|
|
endTime = time.Now()
|
|
latency = endTime.Sub(startTime)
|
|
|
|
if l.config.Status {
|
|
status = strconv.Itoa(ctx.GetStatusCode())
|
|
}
|
|
|
|
if l.config.IP {
|
|
ip = ctx.RemoteAddr()
|
|
}
|
|
|
|
if !l.config.Method {
|
|
method = ""
|
|
}
|
|
|
|
if !l.config.Path {
|
|
path = ""
|
|
}
|
|
|
|
//finally print the logs, no new line, the framework's logger is responsible how to render each log.
|
|
ctx.Application().Log("%v %4v %s %s %s", status, latency, ip, method, path)
|
|
}
|
|
|
|
// New creates and returns a new request logger middleware.
|
|
// Do not confuse it with the framework's Logger.
|
|
// This is for the http requests.
|
|
//
|
|
// Receives an optional configuation.
|
|
func New(cfg ...Config) context.Handler {
|
|
c := DefaultConfigurationReadOnly()
|
|
if len(cfg) > 0 {
|
|
c = cfg[0]
|
|
}
|
|
l := &requestLoggerMiddleware{config: c}
|
|
|
|
return l.ServeHTTP
|
|
}
|