]> source.dussan.org Git - nextcloud-server.git/commitdiff
LDAP: Remove unnecessary debug output, fixes a Notice
authorArthur Schiwon <blizzz@owncloud.com>
Wed, 29 Aug 2012 16:15:53 +0000 (18:15 +0200)
committerArthur Schiwon <blizzz@owncloud.com>
Wed, 29 Aug 2012 17:37:18 +0000 (19:37 +0200)
apps/user_ldap/lib/access.php

index a1206de828571fb04ea92ceb01f0bf4d284b9f10..9abbd91c179f3948688b9d0064b3e0cf6403358a 100644 (file)
@@ -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;
                        }
                }