From ef0a3a92f4f5912b8832dfc7279d8efcdaaecac9 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 21 Jan 2021 17:25:44 +0100 Subject: [PATCH] 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 --- apps/user_ldap/lib/Access.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/Access.php b/apps/user_ldap/lib/Access.php index 426cd05e52aa0..0ce727f8bcb10 100644 --- a/apps/user_ldap/lib/Access.php +++ b/apps/user_ldap/lib/Access.php @@ -543,7 +543,7 @@ public function dn2ocname($fdn, $ldapName = null, $isUser = true, &$newlyMapped 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];