add some debug

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1476566 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2013-04-27 12:53:19 +00:00
parent a0cdc9653a
commit 88610b6e15
1 changed files with 8 additions and 3 deletions

View File

@ -37,7 +37,6 @@ import java.util.Properties;
* The configuration for a connection will not change. * The configuration for a connection will not change.
* *
* @author <a href="mailto:trygvis@inamo.no">trygvis</a> * @author <a href="mailto:trygvis@inamo.no">trygvis</a>
*
*/ */
public class LdapConnection public class LdapConnection
{ {
@ -76,6 +75,8 @@ public class LdapConnection
baseDn.add( subRdn ); baseDn.add( subRdn );
} }
log.debug( "baseDn: {}", baseDn );
baseDnRdns = Collections.unmodifiableList( baseDn.getRdns() ); baseDnRdns = Collections.unmodifiableList( baseDn.getRdns() );
if ( context != null ) if ( context != null )
@ -83,6 +84,8 @@ public class LdapConnection
throw new LdapException( "Already connected." ); throw new LdapException( "Already connected." );
} }
log.debug( "baseDnRdns: {}", baseDnRdns );
Hashtable<Object, Object> e = getEnvironment(); Hashtable<Object, Object> e = getEnvironment();
try try
@ -222,6 +225,8 @@ public class LdapConnection
env.setProperty( Context.STATE_FACTORIES, stateFactories ); env.setProperty( Context.STATE_FACTORIES, stateFactories );
} }
log.debug( "env properties: {}", env );
return env; return env;
} }