aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradnano <[email protected]>2020-09-28 00:08:42 -0400
committeradnano <[email protected]>2020-09-28 00:08:42 -0400
commit21022eb5ac5f71b9345ea50b0aef3615e3a3513e (patch)
treef00865bb8bf3252a7b7fd1a27128e65f148a94d7
parentReturn certificate if it exists in the store (diff)
downloadgo-gemini-21022eb5ac5f71b9345ea50b0aef3615e3a3513e.tar.xz
go-gemini-21022eb5ac5f71b9345ea50b0aef3615e3a3513e.zip
Remove log.Print call
-rw-r--r--client.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/client.go b/client.go
index 0f799c0..a7bbbc5 100644
--- a/client.go
+++ b/client.go
@@ -267,7 +267,6 @@ func (c *Client) Send(req *Request) (*Response, error) {
// Resend the request with a certificate if the server responded
// with CertificateRequired
if resp.Status == StatusCertificateRequired {
- log.Print("Client certificate required")
// Check to see if a certificate was already provided to prevent an infinite loop
if req.Certificate != nil {
return resp, nil