diff options
author | Lyonel Vincent <lyonel@ezix.org> | 2014-12-24 16:32:27 +0100 |
---|---|---|
committer | Lyonel Vincent <lyonel@ezix.org> | 2014-12-24 16:32:27 +0100 |
commit | 5a00b33a90a35cd8f54ba1b8c966608525205cf6 (patch) | |
tree | 706fa5ac4500c07831ff9c5a91307792dd5a2d7f | |
parent | 801b9e0494d90dac3d1103d7e603cdfec9fe62c7 (diff) | |
download | nextcloud-server-5a00b33a90a35cd8f54ba1b8c966608525205cf6.tar.gz nextcloud-server-5a00b33a90a35cd8f54ba1b8c966608525205cf6.zip |
Be less verbose when disabling SSL cert validation
change log level from WARN to DEBUG
-rw-r--r-- | apps/user_ldap/lib/connection.php | 2 |
1 files changed, 1 insertions, 1 deletions
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.', |