diff --git a/HttpServer/Client/Curl.php b/HttpServer/Client/Curl.php index 2d1228c3..8506ec14 100644 --- a/HttpServer/Client/Curl.php +++ b/HttpServer/Client/Curl.php @@ -148,6 +148,7 @@ class Curl extends ClientAbstracts if ($output === FALSE) { return $this->fail(500, $output); } + var_dump($output); [$header, $body, $status] = $this->explode($output); if ($status != 200 && $status != 201) { $data = $this->fail($status, $body, [], $header);