From 33356f44be350d337f4944878f40f52575f9fc5f Mon Sep 17 00:00:00 2001 From: david Date: Sat, 26 Aug 2023 22:19:47 +0300 Subject: [PATCH] remove redundant logger calls --- lib/ApiService.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/ApiService.php b/lib/ApiService.php index 6bcbb74..50ab1da 100644 --- a/lib/ApiService.php +++ b/lib/ApiService.php @@ -66,10 +66,8 @@ public function createAndConfirmDonations($mode, array $donations): int curl_setopt($ch, CURLOPT_POSTFIELDS, $body); $response = curl_exec($ch); - $this->logger->info('response is' . $response); $status = curl_getinfo($ch, CURLINFO_HTTP_CODE); - $this->logger->info('status is' . $status); if ($status == 200) { $this->logger->info("Donmo CreateAndConfirmDonations API Request Successful: \n" . $response);