- minor changes

This commit is contained in:
Ceki Gulcu 2008-08-01 16:13:26 +00:00
parent 00ec8fc6cb
commit 3057ec105d
3 changed files with 32 additions and 4 deletions

View File

@ -31,7 +31,7 @@ import org.slf4j.Marker;
* 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

View File

@ -148,12 +148,11 @@ prefix='';
<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>

View File

@ -36,7 +36,36 @@ prefix='';
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@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>