From 09ff568758795ad778e18723bd03835f93c2246b Mon Sep 17 00:00:00 2001 From: xenolf Date: Sun, 27 Dec 2015 19:18:38 +0100 Subject: [PATCH] Adjust logging output for http-01 --- acme/http_challenge.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acme/http_challenge.go b/acme/http_challenge.go index 75195877..00ad5895 100644 --- a/acme/http_challenge.go +++ b/acme/http_challenge.go @@ -48,7 +48,7 @@ func (s *httpChallenge) Solve(chlng challenge, domain string) error { if strings.HasPrefix(r.Host, domain) && r.Method == "GET" { w.Header().Add("Content-Type", "text/plain") w.Write([]byte(keyAuth)) - logf("[INFO] Served key authentication") + logf("[INFO][%s] Served key authentication", domain) } else { logf("[INFO] Received request for domain %s with method %s", r.Host, r.Method) w.Write([]byte("TEST"))