aboutsummaryrefslogtreecommitdiffstats
path: root/include/network.php
diff options
context:
space:
mode:
authorMichael Meer <michael@meer.name>2014-01-30 11:04:20 +0100
committerMichael Meer <michael@meer.name>2014-01-30 11:04:20 +0100
commitc5ac5544cb02aa3194c5cab2b3ab736a2e19e6eb (patch)
tree028b8581806f99a002d30f2abbdf1d6cf8b85f02 /include/network.php
parent0a2b2a139080b41c10bbc7fc0f3b24129f2c3c38 (diff)
downloadvolse-hubzilla-c5ac5544cb02aa3194c5cab2b3ab736a2e19e6eb.tar.gz
volse-hubzilla-c5ac5544cb02aa3194c5cab2b3ab736a2e19e6eb.tar.bz2
volse-hubzilla-c5ac5544cb02aa3194c5cab2b3ab736a2e19e6eb.zip
clean up logger commands. Placed apostrophs at the end from some comments to keep the syntax highlighting in vi working
Diffstat (limited to 'include/network.php')
-rw-r--r--include/network.php10
1 files changed, 2 insertions, 8 deletions
diff --git a/include/network.php b/include/network.php
index ca6fa1bfc..1fb4beaa7 100644
--- a/include/network.php
+++ b/include/network.php
@@ -78,7 +78,7 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) {
@curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
- // dont let curl abort the entire application
+ // don't let curl abort the entire application'
// if it throws any errors.
$s = @curl_exec($ch);
@@ -86,7 +86,7 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) {
$base = $s;
$curl_info = @curl_getinfo($ch);
$http_code = $curl_info['http_code'];
- logger('fetch_url:' . $http_code . ' data: ' . $s);
+ //logger('fetch_url:' . $http_code . ' data: ' . $s);
$header = '';
// Pull out multiple headers, e.g. proxy and continuation headers
@@ -130,10 +130,6 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) {
function z_post_url($url,$params, $redirects = 0, $opts = array()) {
- logger('z_post_url',LOGGER_DEBUG);
- logger('z_post_url url ' . $url ,LOGGER_DEBUG);
- logger('z_post_url params' . $params ,LOGGER_DEBUG);
- logger('z_post_url redirects ' . $redirects ,LOGGER_DEBUG);
$ret = array('return_code' => 0, 'success' => false, 'header' => "", 'body' => "");
$ch = curl_init($url);
@@ -185,12 +181,10 @@ function z_post_url($url,$params, $redirects = 0, $opts = array()) {
// if it throws any errors.
$s = @curl_exec($ch);
- logger('z_post_url s ' . $s ,LOGGER_DEBUG);
$base = $s;
$curl_info = curl_getinfo($ch);
$http_code = $curl_info['http_code'];
- logger('z_post_url http_code ' . $http_code ,LOGGER_DEBUG);
$header = '';