From 1fe8b213531a8fd93a8a9340ed8c78b75855dff7 Mon Sep 17 00:00:00 2001 From: ralphrimwell <80040084+ralphrimwell@users.noreply.github.com> Date: Mon, 19 Jun 2023 19:38:28 +0100 Subject: [PATCH] Remove log.println calls (#19) --- api2captcha.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/api2captcha.go b/api2captcha.go index 0ab014a..146d479 100644 --- a/api2captcha.go +++ b/api2captcha.go @@ -4,7 +4,6 @@ import ( "bytes" "errors" "io" - "log" "mime/multipart" "net/http" "net/url" @@ -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 @@ -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