summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-12-27 21:39:23 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-12-27 21:39:23 +0100
commit85e02460c85e6fb0268ff3929023cbb308cfeeeb (patch)
tree9adec236a092e86cc2e101917e3220def6932d3e /apps/user_ldap
parent688a4022df1978b87be1720424c4507f3db79e39 (diff)
parentf94b30060272eee8e3b092661be6f5e2dc61b209 (diff)
downloadnextcloud-server-85e02460c85e6fb0268ff3929023cbb308cfeeeb.tar.gz
nextcloud-server-85e02460c85e6fb0268ff3929023cbb308cfeeeb.zip
Merge pull request #13025 from lyonel/master
user_ldap is too verbose by default
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/access.php2
-rw-r--r--apps/user_ldap/lib/connection.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php
index 5d0910320bf..00fb8acc59a 100644
--- a/apps/user_ldap/lib/access.php
+++ b/apps/user_ldap/lib/access.php
@@ -1406,7 +1406,7 @@ class Access extends LDAPUtility implements user\IUserTools {
if(!$pagedSearchOK) {
return false;
}
- \OCP\Util::writeLog('user_ldap', 'Ready for a paged search', \OCP\Util::INFO);
+ \OCP\Util::writeLog('user_ldap', 'Ready for a paged search', \OCP\Util::DEBUG);
} else {
\OCP\Util::writeLog('user_ldap',
'No paged search for us, Cpt., Limit '.$limit.' Offset '.$offset,
diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php
index 54aafb93410..204857eb61e 100644
--- a/apps/user_ldap/lib/connection.php
+++ b/apps/user_ldap/lib/connection.php
@@ -506,7 +506,7 @@ class Connection extends LDAPUtility {
if(putenv('LDAPTLS_REQCERT=never')) {
\OCP\Util::writeLog('user_ldap',
'Turned off SSL certificate validation successfully.',
- \OCP\Util::WARN);
+ \OCP\Util::DEBUG);
} else {
\OCP\Util::writeLog('user_ldap',
'Could not turn off SSL certificate validation.',