miniflux-v2/middleware/logging.go

21 lines
571 B
Go
Raw Normal View History

2018-04-28 05:38:46 +02:00
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package middleware
import (
"net/http"
"github.com/miniflux/miniflux/http/request"
2018-04-28 05:38:46 +02:00
"github.com/miniflux/miniflux/logger"
)
// Logging logs the HTTP request.
func (m *Middleware) Logging(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
logger.Debug("[HTTP] %s %s %s", request.RealIP(r), r.Method, r.RequestURI)
2018-04-28 05:38:46 +02:00
next.ServeHTTP(w, r)
})
}