aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCeki Gulcu <ceki@qos.ch>2015-01-06 21:02:59 +0100
committerCeki Gulcu <ceki@qos.ch>2015-01-06 21:02:59 +0100
commitb774476b17353e929a2572efc97d3463d150d85b (patch)
treec5b209de84ed66b511535ed45197608c40033e80
parent8ebce5231f3b1aa218874e1a24bf102341ee5f77 (diff)
downloadslf4j-b774476b17353e929a2572efc97d3463d150d85b.tar.gz
ignore intermittently failing perf test
-rwxr-xr-x[-rw-r--r--]slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterPerfTest.java2
-rwxr-xr-xslf4j-site/src/site/pages/news.html14
2 files changed, 16 insertions, 0 deletions
diff --git a/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterPerfTest.java b/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterPerfTest.java
index 6cdb52ff..1b07a6e1 100644..100755
--- a/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterPerfTest.java
+++ b/slf4j-api/src/test/java/org/slf4j/helpers/MessageFormatterPerfTest.java
@@ -27,7 +27,9 @@ package org.slf4j.helpers;
import java.text.MessageFormat;
import junit.framework.TestCase;
+import org.junit.Ignore;
+@Ignore
public class MessageFormatterPerfTest extends TestCase {
Integer i1 = new Integer(1);
diff --git a/slf4j-site/src/site/pages/news.html b/slf4j-site/src/site/pages/news.html
index 4b5b60de..fd6c3968 100755
--- a/slf4j-site/src/site/pages/news.html
+++ b/slf4j-site/src/site/pages/news.html
@@ -29,6 +29,20 @@
<hr noshade="noshade" size="1"/>
+ <h3>6th of January, 2015 - Release of SLF4J 1.7.10</h3>
+
+ <p>The <code>MDC.putCloseable</code> method now explicitly returns
+ <code>MDC.MDCloseable</code> instead of the more generic
+ <code>java.io.Closeable</code>. This in turn allows one to write
+ try-with-resources statement without a catch clause. Many thanks to
+ William Delanoue for proposing this change.</p>
+
+ <p>The various constructors in <code>FileAppender</code> in the
+ log4j-over-slf4j module are now public.
+ </p>
+
+ <hr noshade="noshade" size="1"/>
+
<h3>16th of December, 2014 - Release of SLF4J 1.7.9</h3>
<p class="highlight"><a href="codes.html#loggerNameMismatch">Spot