From 0a5b9de08421667445024d8c9cc0efd12fe5a052 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 6 Mar 2017 13:56:58 +0100 Subject: [PATCH] Try to debug test failure on Travis MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- libraries/Util.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/Util.php b/libraries/Util.php index 95324b57a9..1e50cc84e1 100644 --- a/libraries/Util.php +++ b/libraries/Util.php @@ -4794,6 +4794,8 @@ class Util } $response = @curl_exec($curl_handle); if ($response === false) { + /* Debug code! */ + echo curl_error($curl_handle); return null; } $http_status = curl_getinfo($curl_handle, CURLINFO_HTTP_CODE);