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/04/23 09:55:47 UTC

svn commit: r164363 - /directory/sandbox/trunk/asn1-new-codec/src/perfs/org/apache/ans1/ber/LdapDecoderPerf.java

Author: elecharny
Date: Sat Apr 23 00:55:47 2005
New Revision: 164363

URL: http://svn.apache.org/viewcvs?rev=164363&view=rev
Log:
Changed import for DecoderException
Modified the log4j file used

Modified:
    directory/sandbox/trunk/asn1-new-codec/src/perfs/org/apache/ans1/ber/LdapDecoderPerf.java

Modified: directory/sandbox/trunk/asn1-new-codec/src/perfs/org/apache/ans1/ber/LdapDecoderPerf.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/src/perfs/org/apache/ans1/ber/LdapDecoderPerf.java?rev=164363&r1=164362&r2=164363&view=diff
==============================================================================
--- directory/sandbox/trunk/asn1-new-codec/src/perfs/org/apache/ans1/ber/LdapDecoderPerf.java (original)
+++ directory/sandbox/trunk/asn1-new-codec/src/perfs/org/apache/ans1/ber/LdapDecoderPerf.java Sat Apr 23 00:55:47 2005
@@ -16,9 +16,9 @@
  */
 package org.apache.ans1.ber;
 
+import org.apache.asn1.DecoderException;
 import org.apache.asn1.ber.Asn1Decoder;
 import org.apache.asn1.ber.containers.IAsn1Container;
-import org.apache.asn1.ldap.codec.DecoderException;
 import org.apache.asn1.ldap.codec.LdapMessageContainer;
 import org.apache.asn1.ldap.pojo.BindRequestPOJO;
 import org.apache.asn1.ldap.pojo.LdapMessagePOJO;
@@ -46,7 +46,7 @@
 
     static
     {
-        PropertyConfigurator.configure( "conf/log4j.conf" );
+        PropertyConfigurator.configure( "conf/log4j-perf.conf" );
     }
 
     //~ Methods ------------------------------------------------------------------------------------