aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2021-01-21 17:25:44 +0100
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-01-21 21:09:57 +0000
commit9d8b597605c8d6106ed6ac141fce464488106a72 (patch)
tree734230b7591ed8316c59afb31ab91be27d75b13f /apps/user_ldap
parent5f5203a2853bb1e810e92ad9de20aae5d420e20e (diff)
downloadnextcloud-server-9d8b597605c8d6106ed6ac141fce464488106a72.tar.gz
nextcloud-server-9d8b597605c8d6106ed6ac141fce464488106a72.zip
silence log message
- this appears too often (in some configurations) when qualifying group members which do not meet the criteria Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/Access.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Access.php b/apps/user_ldap/lib/Access.php
index 01818079802..c572c9b0560 100644
--- a/apps/user_ldap/lib/Access.php
+++ b/apps/user_ldap/lib/Access.php
@@ -546,7 +546,7 @@ class Access extends LDAPUtility {
if (is_null($ldapName)) {
$ldapName = $this->readAttribute($fdn, $nameAttribute, $filter);
if (!isset($ldapName[0]) && empty($ldapName[0])) {
- \OCP\Util::writeLog('user_ldap', 'No or empty name for ' . $fdn . ' with filter ' . $filter . '.', ILogger::INFO);
+ \OCP\Util::writeLog('user_ldap', 'No or empty name for ' . $fdn . ' with filter ' . $filter . '.', ILogger::DEBUG);
return false;
}
$ldapName = $ldapName[0];