From d9e2e2a87346770e771ac65a04f25a3eb2784c86 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Wed, 2 Dec 2015 12:33:37 -0700 Subject: [PATCH] Cleaned up a couple log lines --- acme/http_challenge.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acme/http_challenge.go b/acme/http_challenge.go index 66ade473..8ace6795 100644 --- a/acme/http_challenge.go +++ b/acme/http_challenge.go @@ -119,9 +119,9 @@ func (s *httpChallenge) startHTTPServer(domain string, token string, keyAuth str if strings.HasPrefix(r.Host, domain) && r.Method == "GET" { w.Header().Add("Content-Type", "text/plain") w.Write([]byte(keyAuth)) - logf("Served Key Authentication ...") + logf("[INFO] Served key authentication") } else { - logf("Received request for domain %s with method %s", r.Host, r.Method) + logf("[INFO] Received request for domain %s with method %s", r.Host, r.Method) w.Write([]byte("TEST")) } })