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 2014/11/07 11:25:26 UTC

svn commit: r1637332 - /directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/message/BindRequestImpl.java

Author: elecharny
Date: Fri Nov  7 10:25:25 2014
New Revision: 1637332

URL: http://svn.apache.org/r1637332
Log:
Dropped the exception addition in the log when the DN is invalid.

Modified:
    directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/message/BindRequestImpl.java

Modified: directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/message/BindRequestImpl.java
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/message/BindRequestImpl.java?rev=1637332&r1=1637331&r2=1637332&view=diff
==============================================================================
--- directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/message/BindRequestImpl.java (original)
+++ directory/shared/trunk/ldap/model/src/main/java/org/apache/directory/api/ldap/model/message/BindRequestImpl.java Fri Nov  7 10:25:25 2014
@@ -215,7 +215,7 @@ public class BindRequestImpl extends Abs
         catch ( LdapInvalidDnException e )
         {
             // This might still be a valid DN (Windows AD binding for instance)
-            LOG.debug( "Unable to convert the name to a DN.", e );
+            LOG.debug( "Unable to convert the name to a DN." );
             this.dn = null;
         }