You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2019/05/26 10:18:46 UTC

svn commit: r1860048 - in /jmeter/trunk: bin/log4j2.xml src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java

Author: fschumacher
Date: Sun May 26 10:18:46 2019
New Revision: 1860048

URL: http://svn.apache.org/viewvc?rev=1860048&view=rev
Log:
Revert unwanted changes from last commit

Modified:
    jmeter/trunk/bin/log4j2.xml
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java

Modified: jmeter/trunk/bin/log4j2.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/bin/log4j2.xml?rev=1860048&r1=1860047&r2=1860048&view=diff
==============================================================================
--- jmeter/trunk/bin/log4j2.xml (original)
+++ jmeter/trunk/bin/log4j2.xml Sun May 26 10:18:46 2019
@@ -52,7 +52,6 @@
     <Logger name="org.apache.jmeter.protocol.http" level="debug" />
     -->
     <!-- # For CookieManager, AuthManager etc: -->
-    <Logger name="org.apache.jmeter.protocol.http.sampler.HTTPHC4Impl" level="debug" />
     <!--
     <Logger name="org.apache.jmeter.protocol.http.control" level="debug" />
     <Logger name="org.apache.jmeter.protocol.ftp" level="warn" />

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java?rev=1860048&r1=1860047&r2=1860048&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java Sun May 26 10:18:46 2019
@@ -555,10 +555,6 @@ public class HTTPHC4Impl extends HTTPHCA
                     HTTPCLIENTS_CACHE_PER_THREAD_AND_HTTPCLIENTKEY.get();
             triple =
                     mapHttpClientPerHttpClientKey.get(key);
-            if (log.isDebugEnabled()) {
-                log.debug("Got triple: {} for key {} in map {} on thread {}", triple, key,
-                        mapHttpClientPerHttpClientKey, Thread.currentThread());
-            }
             URI uri = url.toURI();
             httpRequest = createHttpRequest(uri, method, areFollowingRedirect);
             setupRequest(url, httpRequest, res); // can throw IOException
@@ -712,7 +708,6 @@ public class HTTPHC4Impl extends HTTPHCA
     private void saveProxyAuth(
             MutableTriple<CloseableHttpClient, AuthState, PoolingHttpClientConnectionManager> triple,
             HttpContext localContext) {
-        log.debug("Store Proxy Auth: {}", triple);
         if (triple != null) {
             triple.setMiddle((AuthState) localContext.getAttribute(HttpClientContext.PROXY_AUTH_STATE));
         }