Author: sebb
Date: Fri Oct 19 12:25:01 2007
New Revision: 586583

URL: http://svn.apache.org/viewvc?rev=586583&view=rev
Log:
Only log the parser version once

Modified:
    
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/FormCharSetFinder.java

Modified: 
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/FormCharSetFinder.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/FormCharSetFinder.java?rev=586583&r1=586582&r2=586583&view=diff
==============================================================================
--- 
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/FormCharSetFinder.java
 (original)
+++ 
jakarta/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/FormCharSetFinder.java
 Fri Oct 19 12:25:01 2007
@@ -38,9 +38,12 @@
 class FormCharSetFinder {
     private static final Logger log = LoggingManager.getLoggerForClass();
 
+    static {
+        log.info("Using htmlparser version: "+Parser.getVersion());
+    }
+
     protected FormCharSetFinder() {
                super();
-        log.info("Using htmlparser version: "+Parser.getVersion());
        }
 
     /**



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to