From be5595817b817fd96902f8480432326a8eaaa9eb Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Sun, 6 Dec 2015 12:55:02 +0000 Subject: [PATCH] Change quickstart message --- cmd/acmetool/quickstart.go | 4 ++-- responder/http.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/acmetool/quickstart.go b/cmd/acmetool/quickstart.go index def481b..951e858 100644 --- a/cmd/acmetool/quickstart.go +++ b/cmd/acmetool/quickstart.go @@ -463,9 +463,9 @@ func promptServerURL() string { Title: "Select ACME Server", Body: `Please choose an ACME server from which to request certificates. Your principal choices are the Let's Encrypt Live Server, and the Let's Encrypt Staging Server. -Until Let's Encrypt enters open beta, you can only use the Let's Encrypt Live Server if you have been invited to the closed beta, and you will only be able to request certificates for the hostnames you specified in your beta application. +You can use the Let's Encrypt Live Server to get real certificates. -The Let's Encrypt Staging Server can be used by anyone but does not issue publically trusted certificates. It is useful for development purposes.`, +The Let's Encrypt Staging Server does not issue publically trusted certificates. It is useful for development purposes, as it has far higher rate limits than the live server.`, ResponseType: interaction.RTSelect, Options: []interaction.Option{ { diff --git a/responder/http.go b/responder/http.go index 4945037..c1c1fe0 100644 --- a/responder/http.go +++ b/responder/http.go @@ -191,7 +191,7 @@ func (s *httpResponder) startListener(addr string) error { l, err := net.Listen("tcp", svr.Addr) if err != nil { - log.Noticee(err, "failed to listen on ", svr.Addr) + log.Debuge(err, "failed to listen on ", svr.Addr) return err }