Author: kkolinko Date: Thu Jul 21 11:08:23 2011 New Revision: 1149118 URL: http://svn.apache.org/viewvc?rev=1149118&view=rev Log: Improve wording in a message and in one entry in changelog.
Modified: tomcat/trunk/test/org/apache/tomcat/util/scan/TestJarScanner.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/test/org/apache/tomcat/util/scan/TestJarScanner.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/util/scan/TestJarScanner.java?rev=1149118&r1=1149117&r2=1149118&view=diff ============================================================================== --- tomcat/trunk/test/org/apache/tomcat/util/scan/TestJarScanner.java (original) +++ tomcat/trunk/test/org/apache/tomcat/util/scan/TestJarScanner.java Thu Jul 21 11:08:23 2011 @@ -32,9 +32,9 @@ public class TestJarScanner extends Tomc 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")); Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1149118&r1=1149117&r2=1149118&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Thu Jul 21 11:08:23 2011 @@ -151,10 +151,11 @@ 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) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org