From 06ccf5ed9baee282f974f5e4b7fba69da3a371ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no> Date: Sun, 11 Jan 2009 15:15:47 +0000 Subject: [PATCH] log if attribute value exceed max size git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1140 44740490-163a-0410-bde0-09ae8108e29a --- lib/SimpleSAML/Auth/LDAP.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/SimpleSAML/Auth/LDAP.php b/lib/SimpleSAML/Auth/LDAP.php index c2bc9ebd7..dc7c3b7b3 100644 --- a/lib/SimpleSAML/Auth/LDAP.php +++ b/lib/SimpleSAML/Auth/LDAP.php @@ -174,6 +174,8 @@ class SimpleSAML_Auth_LDAP { if (is_null($maxsize) or strlen($attribute[$j]) < $maxsize) { $include = TRUE; $values[] = ($base64encode ? base64_encode($attribute[$j]) : $attribute[$j] ); + } else { + SimpleSAML_Logger::debug('Library - attribute size of [' . $attributeName . '] exceeded maximum limit of ' . $maxsize . ' - skipping attribute value'); } } -- GitLab