From 038411708cab0c57ed355d9bc2194ab031de4447 Mon Sep 17 00:00:00 2001 From: alvin-reyes Date: Fri, 14 Apr 2023 16:16:53 -0400 Subject: [PATCH] remove loggers --- jobs/upload_processor.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/jobs/upload_processor.go b/jobs/upload_processor.go index f5a73b8..3d9c24e 100644 --- a/jobs/upload_processor.go +++ b/jobs/upload_processor.go @@ -199,10 +199,8 @@ func (r *UploadToEstuaryProcessor) Run() error { req.Header.Set("Authorization", "Bearer "+r.Content.RequestingApiKey) client := &http.Client{} var res *http.Response - fmt.Println("Sending request to delta node") for j := 0; j < maxRetries; j++ { res, err = client.Do(req) - fmt.Println("Response from delta node: ", res) if err != nil || res.StatusCode != http.StatusOK { fmt.Printf("Error sending request (attempt %d): %v\n", j+1, err) time.Sleep(retryInterval)