From 7666aaea6a8613c11c685ca1863b772ceaaacc48 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 23 Mar 2014 14:45:08 -0700 Subject: improve curl error logging --- include/network.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/network.php') diff --git a/include/network.php b/include/network.php index 1fb4beaa7..27f912508 100644 --- a/include/network.php +++ b/include/network.php @@ -116,6 +116,7 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) { $ret['success'] = (($rc >= 200 && $rc <= 299) ? true : false); if(! $ret['success']) { $ret['debug'] = $curl_info; + logger('z_fetch_url: error:' . curl_error($ch), LOGGER_DEBUG); logger('z_fetch_url: debug:' . print_r($curl_info,true), LOGGER_DATA); } $ret['body'] = substr($s,strlen($header)); @@ -218,7 +219,8 @@ function z_post_url($url,$params, $redirects = 0, $opts = array()) { $ret['success'] = (($rc >= 200 && $rc <= 299) ? true : false); if(! $ret['success']) { $ret['debug'] = $curl_info; - logger('z_fetch_url: debug:' . print_r($curl_info,true), LOGGER_DATA); + logger('z_post_url: error:' . curl_error($ch), LOGGER_DEBUG); + logger('z_post_url: debug:' . print_r($curl_info,true), LOGGER_DATA); } $ret['body'] = substr($s,strlen($header)); -- cgit v1.2.3