From 04a8f09e5eca1772532d998047ab93d9b6144536 Mon Sep 17 00:00:00 2001 From: Danny van Kooten Date: Fri, 23 Dec 2016 17:38:57 +0200 Subject: [PATCH] Remove stray fmt.Print call from screens API endpoint --- api/screens.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/api/screens.go b/api/screens.go index 2fda3cf..a307516 100644 --- a/api/screens.go +++ b/api/screens.go @@ -2,7 +2,6 @@ package api import ( "encoding/json" - "fmt" "net/http" "github.com/dannyvankooten/ana/count" @@ -15,8 +14,6 @@ var GetScreenResolutionsHandler = http.HandlerFunc(func(w http.ResponseWriter, r // get total total := count.Visitors(before, after) - fmt.Printf("Total # of visitors: %d\n", total) - // get rows results := count.Screens(before, after, getRequestedLimit(r), total)