aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-02-03 11:44:28 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-02-03 11:44:28 +0100
commit166c4e266ff9817ca125d8376d4bb0ce0d6ef68d (patch)
treecd88b6d341fa9c5245392ead0dd0a8c2cff80732 /apps
parenta24d73aa0cde139c4aee0404c46c54bd1f94ada9 (diff)
downloadnextcloud-server-166c4e266ff9817ca125d8376d4bb0ce0d6ef68d.tar.gz
nextcloud-server-166c4e266ff9817ca125d8376d4bb0ce0d6ef68d.zip
Reduce log level of bind failed to WARN - fixes #11624
Diffstat (limited to 'apps')
-rw-r--r--apps/user_ldap/lib/connection.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php
index a9d21ffc8e7..e3b2616e2d2 100644
--- a/apps/user_ldap/lib/connection.php
+++ b/apps/user_ldap/lib/connection.php
@@ -592,7 +592,7 @@ class Connection extends LDAPUtility {
if(!$ldapLogin) {
\OCP\Util::writeLog('user_ldap',
'Bind failed: ' . $this->ldap->errno($cr) . ': ' . $this->ldap->error($cr),
- \OCP\Util::ERROR);
+ \OCP\Util::WARN);
$this->ldapConnectionRes = null;
return false;
}