Skip to content

Commit

Permalink
Remove log.println calls (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphrimwell authored Jun 19, 2023
1 parent af21cbd commit 1fe8b21
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions api2captcha.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"bytes"
"errors"
"io"
"log"
"mime/multipart"
"net/http"
"net/url"
Expand Down Expand Up @@ -229,7 +228,6 @@ func (c *Client) res(req Request) (*string, error) {
return nil, err
}
data := body.String()
log.Println("Status " + resp.Status + " data " + data)

if resp.StatusCode != http.StatusOK {
return nil, ErrApi
Expand Down Expand Up @@ -319,7 +317,6 @@ func (c *Client) Send(req Request) (string, error) {
return "", err
}
data := body.String()
log.Println("Status " + resp.Status + " data " + data)

if resp.StatusCode != http.StatusOK {
return "", ErrApi
Expand Down

0 comments on commit 1fe8b21

Please sign in to comment.