summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/public/share.php2
1 files changed, 0 insertions, 2 deletions
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);
}