diff options
| author | Shulhan <m.shulhan@gmail.com> | 2019-09-23 22:51:28 +0700 |
|---|---|---|
| committer | Shulhan <m.shulhan@gmail.com> | 2019-09-23 23:47:48 +0700 |
| commit | dbc2cc44c01b633cd805b2b68f27750ce6efd18b (patch) | |
| tree | 97babe8ca3c3a30b5c8ad908790c56319baec173 /lib/http/server.go | |
| parent | 9d2bd0bd555a1634e1ea7651b9939a38b6100669 (diff) | |
| download | pakakeh.go-dbc2cc44c01b633cd805b2b68f27750ce6efd18b.tar.xz | |
http: remove unnecessary logging on handleGet
Diffstat (limited to 'lib/http/server.go')
| -rw-r--r-- | lib/http/server.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/http/server.go b/lib/http/server.go index 58d32f11..9efeb247 100644 --- a/lib/http/server.go +++ b/lib/http/server.go @@ -385,7 +385,6 @@ func (srv *Server) handleGet(res http.ResponseWriter, req *http.Request) { for _, rute := range srv.routeGets { vals, ok := rute.parse(req.URL.Path) if ok { - log.Printf("handleGet: %s %s\n", req.URL.Path, vals) rute.endpoint.call(res, req, srv.evals, vals) return } |
