Improve wording in a message and in one entry in changelog.
authorkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 21 Jul 2011 11:08:23 +0000 (11:08 +0000)
committerkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 21 Jul 2011 11:08:23 +0000 (11:08 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1149118 13f79535-47bb-0310-9956-ffa450edef68

test/org/apache/tomcat/util/scan/TestJarScanner.java
webapps/docs/changelog.xml

index a8cc821..90e3060 100644 (file)
@@ -32,9 +32,9 @@ public class TestJarScanner extends TomcatBaseTest {
         String token;
         while (tokenizer.hasMoreElements()) {
             token = tokenizer.nextToken();
-            assertTrue("token '" + token + "' does not end with \".jar\"",
+            assertTrue("Token \"" + token + "\" does not end with \".jar\"",
                        token.endsWith(".jar"));
-            assertEquals("token '" + token + "' contains sub string \".jar\"" +
+            assertEquals("Token \"" + token + "\" contains sub string \".jar\"" +
                          " or separator \",\" is missing",
                          token.length() - ".jar".length(),
                          token.indexOf(".jar"));
index 1d1afa4..04d53d7 100644 (file)
         a Context or Host can be identified for the failed request. (markt)
       </fix>
       <update>
-        In JULI FileHandler and in AccessLogValve create a directory
-        automatically when it is specified as a part of the file name, e.g. in
-        the <code>prefix</code> attribute. Earlier this happened only if it was
-        specified with the <code>directory</code> attribute. (kkolinko)
+        Create a directory for access log or error log (in AccessLogValve and
+        in JULI FileHandler) automatically when it is specified as a part of
+        the file name, e.g. in the <code>prefix</code> attribute. Earlier this
+        happened only if it was specified with the <code>directory</code>
+        attribute. (kkolinko)
       </update>
       <fix>
         Log a failure if access log file cannot be opened. (kkolinko)