aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2012-08-29 18:15:53 +0200
committerArthur Schiwon <blizzz@owncloud.com>2012-08-29 19:37:18 +0200
commit8be8f6fff2d3456e2f2bd928d40f2e8347f7128b (patch)
treee75136cf0b11f76e94498aa8a039d709c346eee3 /apps
parente5cbc532c300142e50f9a6ffb14229595dd74c78 (diff)
downloadnextcloud-server-8be8f6fff2d3456e2f2bd928d40f2e8347f7128b.tar.gz
nextcloud-server-8be8f6fff2d3456e2f2bd928d40f2e8347f7128b.zip
LDAP: Remove unnecessary debug output, fixes a Notice
Diffstat (limited to 'apps')
-rw-r--r--apps/user_ldap/lib/access.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php
index a1206de8285..9abbd91c179 100644
--- a/apps/user_ldap/lib/access.php
+++ b/apps/user_ldap/lib/access.php
@@ -270,7 +270,6 @@ abstract class Access {
//a new user/group! Then let's try to add it. We're shooting into the blue with the user/group name, assuming that in most cases there will not be a conflict. Otherwise an error will occur and we will continue with our second shot.
if(($isUser && !\OCP\User::userExists($ldapname)) || (!$isUser && !\OC_Group::groupExists($ldapname))) {
if($this->mapComponent($dn, $ldapname, $isUser)) {
- \OCP\Util::writeLog('user_ldap', 'Username '.ldapname.' OK.', \OCP\Util::DEBUG);
return $ldapname;
}
}