You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2015/02/20 22:52:42 UTC

logging-log4j2 git commit: [LOG4J2-956] Manual refers to Route "AppenderRef" attribute, should be "ref".

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 25c589574 -> 24fc7ae53


[LOG4J2-956] Manual refers to Route "AppenderRef" attribute, should be
"ref".

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

Branch: refs/heads/master
Commit: 24fc7ae53365bf476822f02b3dbb0243c3bff83d
Parents: 25c5895
Author: Gary Gregory <ga...@gmail.com>
Authored: Fri Feb 20 13:51:53 2015 -0800
Committer: Gary Gregory <ga...@gmail.com>
Committed: Fri Feb 20 13:51:53 2015 -0800

----------------------------------------------------------------------
 src/changes/changes.xml                   | 3 +++
 src/site/xdoc/manual/configuration.xml.vm | 8 ++++----
 2 files changed, 7 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/24fc7ae5/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index fa9f3d7..298db73 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -27,6 +27,9 @@
       <action issue="LOG4J2-957" dev="ggregory" type="fix" due-to="fatih guleryuz">
         Missing toUpperCase("Locale.ENGLISH").
       </action>
+      <action issue="LOG4J2-956" dev="ggregory" type="fix" due-to="David Kellerman">
+        Manual refers to Route "AppenderRef" attribute, should be "ref".
+      </action>
       <action issue="LOG4J2-955" dev="rpopma" type="update">
         Documentation: clarify system properties to control status logger, improve troubleshooting FAQ entry.
       </action>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/24fc7ae5/src/site/xdoc/manual/configuration.xml.vm
----------------------------------------------------------------------
diff --git a/src/site/xdoc/manual/configuration.xml.vm b/src/site/xdoc/manual/configuration.xml.vm
index 7b1fd53..feeab2f 100644
--- a/src/site/xdoc/manual/configuration.xml.vm
+++ b/src/site/xdoc/manual/configuration.xml.vm
@@ -847,8 +847,8 @@ public class Bar {
             <SizeBasedTriggeringPolicy size="500" />
           </RollingFile>
         </Route>
-        <Route AppenderRef="STDOUT" key="Audit"/>
-        <Route AppenderRef="List" key="Service"/>
+        <Route ref="STDOUT" key="Audit"/>
+        <Route ref="List" key="Service"/>
       </Routes>
     </Routing>
   </Appenders>
@@ -1077,8 +1077,8 @@ public class Bar {
             <SizeBasedTriggeringPolicy size="500" />
           </RollingFile>
         </Route>
-        <Route AppenderRef="STDOUT" key="Audit"/>
-        <Route AppenderRef="List" key="Service"/>
+        <Route ref="STDOUT" key="Audit"/>
+        <Route ref="List" key="Service"/>
       </Routes>
     </Routing>
   </Appenders>