[logback-dev] [GIT] Logback: the generic, reliable, fast and flexible logging framework. branch, master, updated. v0.9.20-8-g79ead2d
added by portage for gitosis-gentoo
git-noreply at pixie.qos.ch
Wed Apr 21 17:07:51 CEST 2010
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Logback: the generic, reliable, fast and flexible logging framework.".
The branch, master has been updated
via 79ead2d851fac7eb07be5df9b520c15d7193c0e1 (commit)
via c12af8fa602de776031ab7ec757ba0cacaa77b04 (commit)
from 157bc935c2f939dc73137f1f01e1a1f36526f913 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.qos.ch/gitweb/?p=logback.git;a=commit;h=79ead2d851fac7eb07be5df9b520c15d7193c0e1
http://github.com/ceki/logback/commit/79ead2d851fac7eb07be5df9b520c15d7193c0e1
commit 79ead2d851fac7eb07be5df9b520c15d7193c0e1
Author: Ceki Gulcu <ceki at qos.ch>
Date: Wed Apr 21 17:06:10 2010 +0200
added link to Shibboleth
diff --git a/logback-site/src/site/pages/index.html b/logback-site/src/site/pages/index.html
index 3e79dd3..db39018 100644
--- a/logback-site/src/site/pages/index.html
+++ b/logback-site/src/site/pages/index.html
@@ -74,7 +74,7 @@
</ul>
</td>
- <td>
+ <td valign="top">
<ul>
<li><a href="http://jmxmonitor.sourceforge.net/">JMX Monitor</a></li>
<li><a href="http://www.opengda.org/">OpenGDA</a></li>
@@ -87,6 +87,7 @@
<td valign="top">
<ul>
<li><a href="http://scalate.fusesource.org/">Scalate</a></li>
+ <li><a href="http://shibboleth.internet2.edu/">Shibboleth</a></li>
<li><a href="http://sonar.codehaus.org/">Sonar</a></li>
<li><a
href="http://static.springsource.org/s2-dmserver/2.0.x/user-guide/htmlsingle/user-guide.html">SpringSource
http://git.qos.ch/gitweb/?p=logback.git;a=commit;h=c12af8fa602de776031ab7ec757ba0cacaa77b04
http://github.com/ceki/logback/commit/c12af8fa602de776031ab7ec757ba0cacaa77b04
commit c12af8fa602de776031ab7ec757ba0cacaa77b04
Author: Ceki Gulcu <ceki at qos.ch>
Date: Tue Apr 20 17:35:47 2010 +0200
- Fixed http://jira.qos.ch/browse/LBCLASSIC-204
diff --git a/logback-site/src/site/pages/manual/configuration.html b/logback-site/src/site/pages/manual/configuration.html
index 7990a48..f6de8cc 100644
--- a/logback-site/src/site/pages/manual/configuration.html
+++ b/logback-site/src/site/pages/manual/configuration.html
@@ -718,49 +718,48 @@ public class MyApp3 {
<p>The <code><logger></code> element may contain zero or more
<code><appender-ref></code> elements; each appender thus
- referenced is added to the named logger. It is important to keep
- mind that each named logger that is declared with a
- <code><logger></code> element first has all its appenders
- removed and only then are the referenced appenders attached to it.
- In particular, if there are no appender references, then the named
- logger will lose all its appenders.
+ referenced is added to the named logger. Note that contrary to
+ log4j, logback-classic does <em>not</em> close or remove any
+ previously referenced appenders before adding the new appender
+ reference.
</p>
- <h4><a name="rootElement" href="#rootElement">Configuring the root
- logger, or the <code><root></code> element</a></h4>
+ <h4><a name="rootElement" href="#rootElement">Configuring the root
+ logger, or the <code><root></code> element</a></h4>
- <p>The <code><root></code> element configures the root logger. It
- admits a single attribute, namely the <span
- class="attr">level</span> attribute. It does not admit any other
- attributes because the additivity flag does not apply to the root
- logger. Moreover, since the root logger is already named as "ROOT",
- it does not admit a name attribute either. The value of the level
- attribute can be one of the case-insensitive strings TRACE, DEBUG,
- INFO, WARN, ERROR, ALL or OFF. Note that the level of the root
- logger cannot be set to INHERITED or NULL.
- </p>
+ <p>The <code><root></code> element configures the root
+ logger. It admits a single attribute, namely the <span
+ class="attr">level</span> attribute. It does not admit any other
+ attributes because the additivity flag does not apply to the root
+ logger. Moreover, since the root logger is already named as
+ "ROOT", it does not admit a name attribute either. The value of the
+ level attribute can be one of the case-insensitive strings TRACE,
+ DEBUG, INFO, WARN, ERROR, ALL or OFF. Note that the level of the
+ root logger cannot be set to INHERITED or NULL.
+ </p>
- <p>The <code><root></code> element admits zero or more
- <code><appender-ref></code> elements. Similar to the
- <code><logger></code> element, declaring a <code><root></code>
- element will have the effect of first closing and then detaching all
- its current appenders and only subsequently will referenced
- appenders, if any, will be added. In particular, if the
- <code><root></code> element contains no appender references, then
- the root logger will lose all its appenders.
- </p>
+ <p>The <code><root></code> element admits zero or more
+ <code><appender-ref></code> elements. Similar to the
+ <code><logger></code> element, the <code><root></code>
+ element may contain zero or more <code><appender-ref></code>
+ elements; each appender thus referenced is added to the root
+ logger. Note that contrary to log4j, logback-classic does
+ <em>not</em> close or remove any previously referenced appenders
+ before adding the new appender reference to the root logger.
+ </p>
- <h4>Example</h4>
+ <h4>Example</h4>
- <p>Setting the level of a logger or root logger is as simple as
- declaring it and setting its level, as the next example
- illustrates. Suppose we are no longer interested in seeing any DEBUG
- messages from any component belonging to the "chapters.configuration" package. The
- following configuration file shows how to achieve that.
- </p>
+ <p>Setting the level of a logger or root logger is as simple as
+ declaring it and setting its level, as the next example
+ illustrates. Suppose we are no longer interested in seeing any
+ DEBUG messages from any component belonging to the
+ "chapters.configuration" package. The following configuration file
+ shows how to achieve that.
+ </p>
<em>Example: Setting the level of a logger (logback-examples/src/main/java/chapters/configuration/sample2.xml)</em>
<pre class="prettyprint source"><configuration>
-----------------------------------------------------------------------
Summary of changes:
logback-site/src/site/pages/index.html | 3 +-
.../src/site/pages/manual/configuration.html | 67 ++++++++++----------
2 files changed, 35 insertions(+), 35 deletions(-)
hooks/post-receive
--
Logback: the generic, reliable, fast and flexible logging framework.
More information about the logback-dev
mailing list