You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2013/10/04 04:22:43 UTC

svn commit: r1529065 - /jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPHC4Impl.java

Author: pmouawad
Date: Fri Oct  4 02:22:43 2013
New Revision: 1529065

URL: http://svn.apache.org/r1529065
Log:
Put log in same call as in multithreaded processing first log could be far from second one

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

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=1529065&r1=1529064&r2=1529065&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 Fri Oct  4 02:22:43 2013
@@ -337,8 +337,8 @@ public class HTTPHC4Impl extends HTTPHCA
                     final URL redirectUrl = new URL(redirectLocation);
                     res.setRedirectLocation(ConversionUtils.sanitizeUrl(redirectUrl).toString());
                 } catch (Exception e) {
-                    log.error("Error in redirect URL for "  + httpRequest.getRequestLine());
-                    log.error("Error sanitizing redirect URL: " + redirectLocation + "\n\t", e);
+                    log.error("Error in redirect URL for "  + httpRequest.getRequestLine()
+                            +", Error sanitizing redirect URL: " + redirectLocation + "\n\t", e);
                 }
             }