diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/Api/User.php | 1 | ||||
-rw-r--r-- | app/Core/Ldap/Client.php | 11 | ||||
-rw-r--r-- | app/Core/Ldap/Query.php | 2 |
3 files changed, 13 insertions, 1 deletions
diff --git a/app/Api/User.php b/app/Api/User.php index 9b8081d6..6ee935a3 100644 --- a/app/Api/User.php +++ b/app/Api/User.php @@ -87,6 +87,7 @@ class User extends \Kanboard\Core\Base try { $ldap = LdapClient::connect(); + $ldap->setLogger($this->logger); $user = LdapUser::getUser($ldap, $username); if ($user === null) { diff --git a/app/Core/Ldap/Client.php b/app/Core/Ldap/Client.php index cee67da5..867d67fe 100644 --- a/app/Core/Ldap/Client.php +++ b/app/Core/Ldap/Client.php @@ -198,4 +198,15 @@ class Client { return $this->logger; } + + /** + * Test if a logger is defined + * + * @access public + * @return boolean + */ + public function hasLogger() + { + return $this->logger !== null; + } } diff --git a/app/Core/Ldap/Query.php b/app/Core/Ldap/Query.php index bea6d5d6..7c1524ca 100644 --- a/app/Core/Ldap/Query.php +++ b/app/Core/Ldap/Query.php @@ -48,7 +48,7 @@ class Query */ public function execute($baseDn, $filter, array $attributes) { - if (DEBUG) { + if (DEBUG && $this->client->hasLogger()) { $this->client->getLogger()->debug('BaseDN='.$baseDn); $this->client->getLogger()->debug('Filter='.$filter); $this->client->getLogger()->debug('Attributes='.implode(', ', $attributes)); |