[slf4j-dev] svn commit: r1088 - in slf4j/trunk: slf4j-api/src/main/java/org/slf4j/spi slf4j-site/src/site/pages

ceki at slf4j.org ceki at slf4j.org
Fri Aug 1 18:13:26 CEST 2008


Author: ceki
Date: Fri Aug  1 18:13:26 2008
New Revision: 1088

Modified:
   slf4j/trunk/slf4j-api/src/main/java/org/slf4j/spi/LocationAwareLogger.java
   slf4j/trunk/slf4j-site/src/site/pages/index.html
   slf4j/trunk/slf4j-site/src/site/pages/news.html

Log:
- minor changes

Modified: slf4j/trunk/slf4j-api/src/main/java/org/slf4j/spi/LocationAwareLogger.java
==============================================================================
--- slf4j/trunk/slf4j-api/src/main/java/org/slf4j/spi/LocationAwareLogger.java	(original)
+++ slf4j/trunk/slf4j-api/src/main/java/org/slf4j/spi/LocationAwareLogger.java	Fri Aug  1 18:13:26 2008
@@ -31,7 +31,7 @@
  * An <b>optional</b> interface helping integration with logging systems capable of 
  * extracting location information. This interface is mainly used by SLF4J bridges 
  * such as jcl104-over-slf4j which need to provide hints so that the underlying logging
- * system can extract the correct locatin information (method name, line number, etc.).
+ * system can extract the correct location information (method name, line number, etc.).
  * 
  * 
  * @author Ceki Gulcu

Modified: slf4j/trunk/slf4j-site/src/site/pages/index.html
==============================================================================
--- slf4j/trunk/slf4j-site/src/site/pages/index.html	(original)
+++ slf4j/trunk/slf4j-site/src/site/pages/index.html	Fri Aug  1 18:13:26 2008
@@ -148,12 +148,11 @@
           <li><a href="http://www.quickfixj.org/">QuickFIX/J</a></li>
           <li><a href="http://smsj.sourceforge.net/dependencies.html">SMSJ</a></li>
           <li><a href="http://www.springframework.org/osgi">Spring-OSGi</a></li>
+          <li><a href="http://streambase.com/">StreamBase</a></li>
           <li><a href="http://www.timefinder.de/">TimeFinder</a></li>
           <li><a href="http://www.wtfigo.org/index.html">WTFIGO</a></li>                 
           <li><a href="http://yaslibrary.sourceforge.net/index.shtml">YASL</a></li>
           <li><a href="http://xooctory.xoocode.org/">Xooctory</a></li>
-
-
         </ul>
       </td>
 

Modified: slf4j/trunk/slf4j-site/src/site/pages/news.html
==============================================================================
--- slf4j/trunk/slf4j-site/src/site/pages/news.html	(original)
+++ slf4j/trunk/slf4j-site/src/site/pages/news.html	Fri Aug  1 18:13:26 2008
@@ -36,7 +36,36 @@
   href="extensions.html">its documentation</a> for further
   details.</p>
 
- 
+  <p>Fixed <a href="http://bugzilla.slf4j.org/show_bug.cgi?id=71">bug
+  71</a> which was re-opened by Manfred Geiler. SLF4J loggers now
+  survive serialization. By survive serialization, we mean
+  that the deserialized logger instance are fully functional. </p>
+
+  <p>The fix for <a
+  href="http://bugzilla.slf4j.org/show_bug.cgi?id=68">bug 68</a> as
+  implemented in version 1.5.1 was incomplete. Michael Furman supplied
+  a more complete fix that was incorporated in this release.</p>
+  
+  <p>When slf4j bridges, e.g. jcl-over-slf4j or log4j-over-slf4j, were
+  used in conjuction with JUL as the underlying logging system,
+  JDK14LoggerAdapter created a LogRecord even for disabled log
+  statements. This performance issue was reported in <a
+  href="http://bugzilla.slf4j.org/show_bug.cgi?id=90">bug 90</a> by
+  Matthew Mastracci.
+  </p>
+
+
+  <p>Added support for array values in parameters. For example,</p> 
+  <p class="source">log.debug("a:{},i:{}", "A", new int[] {1, 2}});</p>
+  <p>will print as "a:A,i:[1, 2]" instead of "a:A,i:[I at 6ca1c" as
+  previously. This enhancement was proposed by "lizongbo"
+  </p>
+
+  <p>Added missing <code>getInstance</code> methods to the
+  <code>Category</code> class in the log4j-over-slf4j module, fixing
+  <a href="http://bugzilla.slf4j.org/show_bug.cgi?id=95">bug 95</a>
+  reported by Michael Rumpf.</p>
+
   <hr noshade="noshade" size="1"/>
 
   <h3>June 8th, 2008 - Release of SLF4J 1.5.2</h3>



More information about the slf4j-dev mailing list