You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2005/12/08 15:01:47 UTC

svn commit: r355093 - /directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/interceptor/InterceptorChain.java

Author: elecharny
Date: Thu Dec  8 06:01:43 2005
New Revision: 355093

URL: http://svn.apache.org/viewcvs?rev=355093&view=rev
Log:
Added a debug log message

Modified:
    directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/interceptor/InterceptorChain.java

Modified: directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/interceptor/InterceptorChain.java
URL: http://svn.apache.org/viewcvs/directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/interceptor/InterceptorChain.java?rev=355093&r1=355092&r2=355093&view=diff
==============================================================================
--- directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/interceptor/InterceptorChain.java (original)
+++ directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/interceptor/InterceptorChain.java Thu Dec  8 06:01:43 2005
@@ -226,6 +226,12 @@
             while( i.hasNext() )
             {
                 InterceptorConfiguration cfg = ( InterceptorConfiguration ) i.next();
+                
+                if ( log.isDebugEnabled() ) 
+                {
+                	log.debug( "Adding interceptor " + cfg.getName() ); 
+                }
+                
                 register( cfg );
             }
         }