aboutsummaryrefslogtreecommitdiff
path: root/cmd/server
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/server')
-rw-r--r--cmd/server/handlers.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/cmd/server/handlers.go b/cmd/server/handlers.go
index 49f2039..e6d2203 100644
--- a/cmd/server/handlers.go
+++ b/cmd/server/handlers.go
@@ -4,7 +4,6 @@ import (
"net/http"
"path/filepath"
"strings"
- "fmt"
"riedstra.dev/mitch/go-website/mapcache"
"riedstra.dev/mitch/go-website/page"
@@ -56,8 +55,6 @@ func (a *App) Handler() http.Handler {
}
for _, r := range cacheableRoutes {
- fmt.Printf("Calling mux.Handle(r.path(%s), cacheHandler(r.handler(%v)))\n",
- r.path, r.handler)
mux.Handle(r.path, cacheHandler(r.handler))
}