diff --git a/HttpServer/Client/Curl.php b/HttpServer/Client/Curl.php index 1a5c9c16..8f068ec6 100644 --- a/HttpServer/Client/Curl.php +++ b/HttpServer/Client/Curl.php @@ -147,6 +147,7 @@ class Curl extends ClientAbstracts private function execute($curl) { $output = curl_exec($curl); + var_dump($output); if ($output === false) { return $this->fail(400, curl_error($curl)); }