about summary refs log tree commit diff
path: root/src/http/middlewares.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/http/middlewares.go')
-rw-r--r--src/http/middlewares.go16
1 files changed, 16 insertions, 0 deletions
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)
+	})
+}