Check if LDAP logger is defined
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user