From 6acde04de5cd34fc746a1c5edc2afaf8e0e3d06d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no>
Date: Tue, 20 Jan 2009 09:30:21 +0000
Subject: [PATCH] More debug LDAP logging in LDAP class

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1177 44740490-163a-0410-bde0-09ae8108e29a
---
 lib/SimpleSAML/Auth/LDAP.php | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/SimpleSAML/Auth/LDAP.php b/lib/SimpleSAML/Auth/LDAP.php
index 647ad505b..fe4db177c 100644
--- a/lib/SimpleSAML/Auth/LDAP.php
+++ b/lib/SimpleSAML/Auth/LDAP.php
@@ -101,8 +101,8 @@ class SimpleSAML_Auth_LDAP {
 	 * 			of throwing an exception if no results was found.
 	 */
 	public function searchfordn($searchbase, $searchattr, $searchvalue, $allowZeroHits = FALSE) {
-	
 
+		SimpleSAML_Logger::debug('Library - LDAP: searchfordn() Search for entries');
 		$searchbases = SimpleSAML_Utilities::arrayize($searchbase);
 
 		/**
@@ -120,7 +120,8 @@ class SimpleSAML_Auth_LDAP {
 					$e->getMessage());
 			}
 		}
-
+		SimpleSAML_Logger::debug('Library - LDAP: searchfordn() Zero entries found');
+		
 		if ($allowZeroHits) {
 			return NULL;
 		} else {
-- 
GitLab