You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2008/06/05 03:29:30 UTC

svn commit: r663432 - /directory/apacheds/trunk/server-unit/src/test/java/org/apache/directory/server/ssl/StartTlsITest.java

Author: akarasulu
Date: Wed Jun  4 18:29:29 2008
New Revision: 663432

URL: http://svn.apache.org/viewvc?rev=663432&view=rev
Log:
fix logging

Modified:
    directory/apacheds/trunk/server-unit/src/test/java/org/apache/directory/server/ssl/StartTlsITest.java

Modified: directory/apacheds/trunk/server-unit/src/test/java/org/apache/directory/server/ssl/StartTlsITest.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/server-unit/src/test/java/org/apache/directory/server/ssl/StartTlsITest.java?rev=663432&r1=663431&r2=663432&view=diff
==============================================================================
--- directory/apacheds/trunk/server-unit/src/test/java/org/apache/directory/server/ssl/StartTlsITest.java (original)
+++ directory/apacheds/trunk/server-unit/src/test/java/org/apache/directory/server/ssl/StartTlsITest.java Wed Jun  4 18:29:29 2008
@@ -198,20 +198,20 @@
 	        env.put( Context.PROVIDER_URL, "ldap://localhost:" + port );
 	
 	        // Create initial context
-	        LOG.error( "About to get initial context" );
+	        LOG.debug( "About to get initial context" );
 	        LdapContext ctx = new InitialLdapContext( env, null );
 	
 	        // Start TLS
-	        LOG.error( "About send startTls extended operation" );
+	        LOG.debug( "About send startTls extended operation" );
 	        StartTlsResponse tls = ( StartTlsResponse ) ctx.extendedOperation( new StartTlsRequest() );
-	        LOG.error( "Extended operation issued" );
+	        LOG.debug( "Extended operation issued" );
 	        tls.setHostnameVerifier( new HostnameVerifier() {
 	            public boolean verify( String hostname, SSLSession session )
 	            {
 	                return true;
 	            } 
 	        } );
-	        LOG.error( "TLS negotion about to begin" );
+	        LOG.debug( "TLS negotion about to begin" );
 	        tls.negotiate();
 
 	        search( ii, ctx );