You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rp...@apache.org on 2014/09/24 14:18:52 UTC

git commit: LOG4J2-855 Fix broken links on Appenders manual page.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 0ff08da87 -> a902612d4


LOG4J2-855 Fix broken links on Appenders manual page.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/a902612d
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/a902612d
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/a902612d

Branch: refs/heads/master
Commit: a902612d42f98743e833a2e086efae6bb7a2be65
Parents: 0ff08da
Author: rpopma <rp...@apache.org>
Authored: Wed Sep 24 21:18:53 2014 +0900
Committer: rpopma <rp...@apache.org>
Committed: Wed Sep 24 21:18:53 2014 +0900

----------------------------------------------------------------------
 src/changes/changes.xml            | 3 +++
 src/site/xdoc/manual/appenders.xml | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/a902612d/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index b754392..0b13ca0 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -24,6 +24,9 @@
   </properties>
   <body>
     <release version="2.1" date="2014-??-??" description="Bug fixes and enhancements">
+      <action issue="LOG4J2-855" dev="rpopma" type="fix">
+        Fix broken links on Appenders manual page.
+      </action>
       <action issue="LOG4J2-807" dev="rpopma" type="fix">
         Prevent NPE when configuration with AsyncLogger/AsyncRoot is reloaded.
       </action>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/a902612d/src/site/xdoc/manual/appenders.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/manual/appenders.xml b/src/site/xdoc/manual/appenders.xml
index 822a505..3f7f074 100644
--- a/src/site/xdoc/manual/appenders.xml
+++ b/src/site/xdoc/manual/appenders.xml
@@ -33,7 +33,7 @@
           implement the <a href="../log4j-core/apidocs/org/apache/logging/log4j/core/Appender.html">Appender</a>
           interface. Most Appenders will extend
           <a href="../log4j-core/apidocs/org/apache/logging/log4j/core/appender/AbstractAppender.html">AbstractAppender</a>
-          which adds <a href="../log4j-core/apidocs/org/apache/logging/log4j/core/Lifecycle.html">Lifecycle</a>
+          which adds <a href="../log4j-core/apidocs/org/apache/logging/log4j/core/LifeCycle.html">Lifecycle</a>
           and <a href="../log4j-core/apidocs/org/apache/logging/log4j/core/filter/Filterable.html">Filterable</a>
           support. Lifecycle allows components to finish initialization after configuration has completed and to
           perform cleanup during shutdown. Filterable allows the component to have Filters attached to it which are
@@ -41,7 +41,7 @@
         </p>
         <p>
           Appenders usually are only responsible for writing the event data to the target destination. In most cases
-          they delegate responsibility for formatting the event to a <a href="../layouts.html">layout</a>. Some
+          they delegate responsibility for formatting the event to a <a href="layouts.html">layout</a>. Some
           appenders wrap other appenders so that they can modify the LogEvent, handle a failure in an Appender,
           route the event to a subordinate Appender based on advanced Filter criteria or provide similar functionality
           that does not directly format the event for viewing.