Add debug line to see incoming API requests
diff --git a/api/api.go b/api/api.go
index 2543e57..9a1c9c0 100644
--- a/api/api.go
+++ b/api/api.go
@@ -92,6 +92,7 @@
 
 func (r *router) ServeHTTP(w http.ResponseWriter, req *http.Request) {
 	requests.Add(req.URL.Path, 1)
+	log.Infof("Handling %s", req.URL.Path)
 	r.r.ServeHTTP(w, req)
 }