amyroh 2004/09/25 14:27:31
Modified: tester/src/tester/org/apache/tester TestClient.java
Log:
Fix compilation error in tester - thanks Mladen. :-)
Revision Changes Path
1.4 +5 -5 jakarta-tomcat-catalina/tester/src/tester/org/apache/tester/TestClient.java
Index: TestClient.java
===================================================================
RCS file: /home/cvs/jakarta-tomcat-catalina/tester/src/tester/org/apache/tester/TestClient.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TestClient.java 17 Sep 2004 18:32:14 -0000 1.3
+++ TestClient.java 25 Sep 2004 21:27:31 -0000 1.4
@@ -485,9 +485,9 @@
parseSession(value);
}
if (debug >= 1) {
- log.println("DATA: " + outData);
+ log("DATA: " + outData);
if (outText.length() > 2)
- log.println("TEXT: " + outText);
+ log("TEXT: " + outText);
}
// Validate the response against our criteria
@@ -546,9 +546,9 @@
// Log the results of executing this request
if (success)
- log.println("OK " + summary);
+ log("OK " + summary);
else {
- log.println("FAIL " + summary + " " + result);
+ log("FAIL " + summary + " " + result);
if (throwable != null)
throwable.printStackTrace(System.out);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
|