From 558372b02769d16a10b112318fd429c36d75c0af Mon Sep 17 00:00:00 2001 From: Hunter Long Date: Fri, 29 Jun 2018 18:45:04 -0700 Subject: [PATCH] new --- handlers/index.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/handlers/index.go b/handlers/index.go index 65c6b18a1..887b3367b 100644 --- a/handlers/index.go +++ b/handlers/index.go @@ -1,7 +1,6 @@ package handlers import ( - "fmt" "github.com/hunterlong/statup/core" "net/http" ) @@ -17,7 +16,5 @@ func IndexHandler(w http.ResponseWriter, r *http.Request) { return } out := index{*core.CoreApp, core.CoreApp.Services} - first, _ := out.Services[0].LimitedHits() - fmt.Println(out.Services[0].Name, "start:", first[0].Id, "last:", first[len(first)-1].Id) ExecuteResponse(w, r, "index.html", out) }