diff options
| author | adnano <[email protected]> | 2020-09-28 00:08:42 -0400 |
|---|---|---|
| committer | adnano <[email protected]> | 2020-09-28 00:08:42 -0400 |
| commit | 21022eb5ac5f71b9345ea50b0aef3615e3a3513e (patch) | |
| tree | f00865bb8bf3252a7b7fd1a27128e65f148a94d7 | |
| parent | Return certificate if it exists in the store (diff) | |
| download | go-gemini-21022eb5ac5f71b9345ea50b0aef3615e3a3513e.tar.xz go-gemini-21022eb5ac5f71b9345ea50b0aef3615e3a3513e.zip | |
Remove log.Print call
| -rw-r--r-- | client.go | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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 |