diff --git a/HttpServer/Client/Curl.php b/HttpServer/Client/Curl.php index 34fbca09..b2ec6070 100644 --- a/HttpServer/Client/Curl.php +++ b/HttpServer/Client/Curl.php @@ -146,6 +146,7 @@ class Curl extends ClientAbstracts if ($output === false) { return $this->fail(400, curl_error($curl)); } + var_dump($output); return $this->parseResponse($curl, $output); }