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 2016/09/20 00:12:27 UTC

[5/9] logging-log4j2 git commit: Fix status logger messages.

Fix status logger messages.

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

Branch: refs/heads/master
Commit: 6aab25f95809b8bf39e23cb0d1293c476623eb31
Parents: 123448f
Author: Gary Gregory <gg...@apache.org>
Authored: Mon Sep 19 00:12:07 2016 -0700
Committer: Gary Gregory <gg...@apache.org>
Committed: Mon Sep 19 00:12:07 2016 -0700

----------------------------------------------------------------------
 .../java/org/apache/logging/log4j/core/appender/AppenderSet.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/6aab25f9/log4j-core/src/main/java/org/apache/logging/log4j/core/appender/AppenderSet.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/appender/AppenderSet.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/appender/AppenderSet.java
index b5fc59c..6adf89f 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/appender/AppenderSet.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/appender/AppenderSet.java
@@ -48,7 +48,7 @@ public class AppenderSet {
         @Override
         public AppenderSet build() {
             if (configuration == null) {
-                LOGGER.error("Configuration is missing from AppenderNodeSet");
+                LOGGER.error("Configuration is missing from AppenderSet");
             }
             final List<Node> children = node.getChildren();
             final Map<String, Node> map = new HashMap<>(node == null ? 0 : children.size());
@@ -59,7 +59,7 @@ public class AppenderSet {
             for (final Node childNode : children) {
                 final String key = childNode.getAttributes().get("name");
                 if (key == null) {
-                    LOGGER.error("The attribute 'name' is missing from from the node {} in the AppenderNodeSet {}",
+                    LOGGER.error("The attribute 'name' is missing from from the node {} in the AppenderSet {}",
                             childNode, children);
                 } else {
                     map.put(key, childNode);