diff --git a/lib/tools/Curl.class.php b/lib/tools/Curl.class.php index 9fa9b258..11b5f35a 100644 --- a/lib/tools/Curl.class.php +++ b/lib/tools/Curl.class.php @@ -95,7 +95,6 @@ class Curl if (in_array($method, [static::PUT, static::POST])) { - print_r($options['json_data'] ? json_encode($params) : http_build_query($params)); curl_setopt($ch, CURLOPT_POSTFIELDS, $options['json_data'] ? json_encode($params) : http_build_query($params)); } @@ -164,4 +163,4 @@ class CurlException extends Exception parent::__construct($this->error, $this->errno, $previous); } -} \ No newline at end of file +}