diff options
author | Emile <hanemile@protonmail.com> | 2020-03-22 15:47:40 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2020-03-22 15:47:40 +0100 |
commit | dd7cf1f7d6036d10e5aba2e477b3b759627a9fcd (patch) | |
tree | b70228b4ae80772a49e7bafee7972cbed6dfd9f2 /src/http | |
parent | d7842f6a390761a269354f2bce5a11b4ff5c884b (diff) |
using the logging middleware
Diffstat (limited to 'src/http')
-rw-r--r-- | src/http/http.go | 1 | ||||
-rw-r--r-- | src/http/middlewares.go | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/src/http/http.go b/src/http/http.go index 49efdec..bca2d79 100644 --- a/src/http/http.go +++ b/src/http/http.go @@ -16,6 +16,7 @@ import ( // Server defines and runs an HTTP server func Server() { r := mux.NewRouter() + r.Use(loggingMiddleware) // static js / css hosting assets := r.PathPrefix("/assets/").Subrouter() diff --git a/src/http/middlewares.go b/src/http/middlewares.go new file mode 100644 index 0000000..66258cd --- /dev/null +++ b/src/http/middlewares.go @@ -0,0 +1,16 @@ +package http + +import ( + "net/http" + + "github.com/sirupsen/logrus" +) + +func loggingMiddleware(next http.Handler) http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + // Do stuff here + logrus.Debugf("%s %s", r.Method, r.RequestURI) + // Call the next handler, which can be another middleware in the chain, or the final handler. + next.ServeHTTP(w, r) + }) +} |