summaryrefslogtreecommitdiff
path: root/app/Core/Ldap/Query.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-03-27 18:30:02 -0400
committerFrederic Guillot <fred@kanboard.net>2016-03-27 18:30:02 -0400
commitd0a0be89f2a774e5438fe844d69541fecb5cafc4 (patch)
tree2f0738c4e49f41f00e74fa80dc69efa2de4d2c26 /app/Core/Ldap/Query.php
parentcefeb7ef96902f4c75936bccc0cd72258ef0d7d6 (diff)
Added more logging for LDAP client
Diffstat (limited to 'app/Core/Ldap/Query.php')
-rw-r--r--app/Core/Ldap/Query.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/Core/Ldap/Query.php b/app/Core/Ldap/Query.php
index 1779fa61..bea6d5d6 100644
--- a/app/Core/Ldap/Query.php
+++ b/app/Core/Ldap/Query.php
@@ -48,6 +48,12 @@ class Query
*/
public function execute($baseDn, $filter, array $attributes)
{
+ if (DEBUG) {
+ $this->client->getLogger()->debug('BaseDN='.$baseDn);
+ $this->client->getLogger()->debug('Filter='.$filter);
+ $this->client->getLogger()->debug('Attributes='.implode(', ', $attributes));
+ }
+
$sr = ldap_search($this->client->getConnection(), $baseDn, $filter, $attributes);
if ($sr === false) {
return $this;