You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2013/11/23 14:16:15 UTC

svn commit: r1544788 - /jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Daemon.java

Author: sebb
Date: Sat Nov 23 13:16:15 2013
New Revision: 1544788

URL: http://svn.apache.org/r1544788
Log:
Proxy renames

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

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Daemon.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Daemon.java?rev=1544788&r1=1544787&r2=1544788&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Daemon.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/Daemon.java Sat Nov 23 13:16:15 2013
@@ -33,7 +33,7 @@ import org.apache.log.Logger;
 
 /**
  * Web daemon thread. Creates main socket on port 8080 and listens on it
- * forever. For each client request, creates a proxy thread to handle the
+ * forever. For each client request, creates a Proxy thread to handle the
  * request.
  *
  */
@@ -111,7 +111,7 @@ public class Daemon extends Thread imple
     @Override
     public void run() {
         running = true;
-        log.info("Proxy up and running!");
+        log.info("Test Script Recorder up and running!");
 
         // Maps to contain page and form encodings
         // TODO - do these really need to be shared between all Proxy instances?