From 6bd30d5ba4d6f23b3c6ef40f3f7e0b7c051129c4 Mon Sep 17 00:00:00 2001 From: Mike Kolesnik Date: Mon, 6 Jan 2020 17:42:01 +0200 Subject: [PATCH] fix logging --- handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers.go b/handlers.go index c60e85d..7c8c721 100644 --- a/handlers.go +++ b/handlers.go @@ -231,7 +231,7 @@ func HandleGetCheckingInterval(w http.ResponseWriter, r *http.Request) { Type: getCheckingInterval.Type, } json.NewEncoder(w).Encode(result) - log.Info("Returning checking-interval %v", result) + log.Info("Returning checking-interval: ", result) return }