Skip to content

Commit 27760c9

Browse files
committed
Remove debug message
1 parent 9ed1937 commit 27760c9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Core/HttpClients/CurlHttpClient.php

-4
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,12 @@ public function __construct(BaseCurl $curl = null)
5555
* @inheritdoc
5656
*/
5757
public function makeAPICall($url, $method, array $headers, $body, $timeOut, $verifySSL){
58-
echo "Start prepare Service.\n";
5958
$this->clearResponse();
6059
$this->prepareRequest($url, $method, $headers, $body, $timeOut, $verifySSL);
61-
echo "Start execute Service\n";
6260
$rawResponse = $this->executeRequest();
63-
echo "Service is complete\n";
6461
$this->handleErrors();
6562
$this->setIntuitResponse($rawResponse);
6663
$this->closeConnection();
67-
echo "Connection closed\n";
6864
return $this->getLastResponse();
6965
}
7066

0 commit comments

Comments
 (0)