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 2012/02/10 19:31:30 UTC

svn commit: r1242879 - /jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java

Author: pmouawad
Date: Fri Feb 10 18:31:29 2012
New Revision: 1242879

URL: http://svn.apache.org/viewvc?rev=1242879&view=rev
Log:
Fixed typo
Fixed wrong log

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

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java?rev=1242879&r1=1242878&r2=1242879&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java Fri Feb 10 18:31:29 2012
@@ -492,7 +492,7 @@ public class ProxyControl extends Generi
         if(log.isDebugEnabled()) {
             log.debug("Content-type to filter : " + sampleContentType);
         }
-        // Check if the include pattern is mathed
+        // Check if the include pattern is matched
         if(includeExp != null && includeExp.length() > 0) {
             if(log.isDebugEnabled()) {
                 log.debug("Include expression : " + includeExp);
@@ -509,7 +509,7 @@ public class ProxyControl extends Generi
             }
         }
 
-        // Check if the exclude pattern is mathed
+        // Check if the exclude pattern is matched
         if(excludeExp != null && excludeExp.length() > 0) {
             if(log.isDebugEnabled()) {
                 log.debug("Exclude expression : " + excludeExp);
@@ -522,7 +522,7 @@ public class ProxyControl extends Generi
                     return false;
                 }
             } catch (MalformedCachePatternException e) {
-                log.warn("Skipped invalid content exclude pattern: " + includeExp, e);
+                log.warn("Skipped invalid content exclude pattern: " + excludeExp, e);
             }
         }