diff --git a/router.go b/router.go index 514072e..d4cef89 100644 --- a/router.go +++ b/router.go @@ -1,7 +1,6 @@ package main import ( - "log" "net/http" "strings" ) @@ -115,8 +114,6 @@ func (router *Router) ServeHTTP(w http.ResponseWriter, r *http.Request) { uri := r.RequestURI path := strings.Split(uri, "/") - log.Printf("%s %s", method, uri) - ROUTE: for _, route := range router.routes[method] { if len(route.path) != len(path) {