From: Bjoern Schiessle Date: Fri, 6 Sep 2013 08:58:42 +0000 (+0200) Subject: remove some more debug output X-Git-Tag: v6.0.0alpha2~202 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b8241aa79d732371c7436de15114f2b52afc6866;p=nextcloud-server.git remove some more debug output --- diff --git a/lib/public/share.php b/lib/public/share.php index 8e0ab3ff4b7..9ab956d84b9 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -170,7 +170,6 @@ class Share { \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); } else { while ($row = $result->fetchRow()) { - error_log("add user: " . $row['share_with']); $shares[] = $row['share_with']; } } @@ -190,7 +189,6 @@ class Share { \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); } else { while ($row = $result->fetchRow()) { - error_log("group found: " . $row['share_with']); $usersInGroup = \OC_Group::usersInGroup($row['share_with']); $shares = array_merge($shares, $usersInGroup); }