diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-27 18:44:03 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-27 18:44:03 -0400 |
commit | febbd8cace0770930b08c01a4d07a2efbb959fd2 (patch) | |
tree | 5b894e88d105321ea3748ef7c6eab6b0f65fa8d8 /app/Core/Ldap/Query.php | |
parent | d0a0be89f2a774e5438fe844d69541fecb5cafc4 (diff) |
Check if LDAP logger is defined
Diffstat (limited to 'app/Core/Ldap/Query.php')
-rw-r--r-- | app/Core/Ldap/Query.php | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |