aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-02-07 13:24:11 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-02-07 13:24:11 +0100
commit57c1b499a14dadffe7df54cf91447af379072c98 (patch)
tree9f5d6b05415e1690cf1c2c793490d9a417f8f75e /apps
parentb2f6b8d62e8ee67fa8158442fa484d1d1f9eb013 (diff)
parent166c4e266ff9817ca125d8376d4bb0ce0d6ef68d (diff)
downloadnextcloud-server-57c1b499a14dadffe7df54cf91447af379072c98.tar.gz
nextcloud-server-57c1b499a14dadffe7df54cf91447af379072c98.zip
Merge pull request #13848 from owncloud/ldap-warn
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;
}