Skip to content

Commit db34c37

Browse files
committed
removed logs
1 parent e38dfd5 commit db34c37

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/Andreoli/ApiProxy/Proxy.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -247,16 +247,7 @@ private function addQueryValue($array, $key, $value) {
247247
}
248248

249249
private function replicateRequest($method, $uri, $inputs) {
250-
Log::info('<----------------------- BEGIN REQUEST ----------------------------------');
251-
Log::info(var_export($uri, true));
252-
Log::info(var_export($inputs, true));
253-
Log::info('----------------------- END REQUEST ------------------------------------>');
254250
$guzzleResponse = $this->sendGuzzleRequest($method, $uri, $inputs);
255-
Log::info('<----------------------- BEGIN RESPONSE ----------------------------------');
256-
Log::info(var_export($this->getResponseContent($guzzleResponse), true));
257-
Log::info('----------------------- END RESPONSE ------------------------------------>');
258-
Log::info('*************************************************************************');
259-
260251
$proxyResponse = new ProxyResponse(null, $guzzleResponse->getStatusCode(), $guzzleResponse->getReasonPhrase(), $guzzleResponse->getProtocolVersion(), $this->getResponseContent($guzzleResponse));
261252

262253
return $proxyResponse;

0 commit comments

Comments
 (0)