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