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 2016/08/27 08:19:34 UTC

[07/50] [abbrv] logging-log4j2 git commit: Use "Log4j2" in error messages instead of "log4j2".

Use "Log4j2" in error messages instead of "log4j2".

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

Branch: refs/heads/LOG4J2-1512
Commit: 19ed70638f75289f3524503a760c6adc74c016ff
Parents: 53934c6
Author: Gary Gregory <gg...@apache.org>
Authored: Tue Aug 23 15:49:51 2016 -0700
Committer: Gary Gregory <gg...@apache.org>
Committed: Tue Aug 23 15:49:51 2016 -0700

----------------------------------------------------------------------
 .../main/java/org/apache/logging/log4j/core/jmx/Server.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/19ed7063/log4j-core/src/main/java/org/apache/logging/log4j/core/jmx/Server.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/jmx/Server.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/jmx/Server.java
index 034ce11..39cafeb 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/jmx/Server.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/jmx/Server.java
@@ -132,7 +132,7 @@ public final class Server {
     public static void reregisterMBeansAfterReconfigure() {
         // avoid creating Platform MBean Server if JMX disabled
         if (isJmxDisabled()) {
-            LOGGER.debug("JMX disabled for log4j2. Not registering MBeans.");
+            LOGGER.debug("JMX disabled for Log4j2. Not registering MBeans.");
             return;
         }
         final MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
@@ -141,7 +141,7 @@ public final class Server {
 
     public static void reregisterMBeansAfterReconfigure(final MBeanServer mbs) {
         if (isJmxDisabled()) {
-            LOGGER.debug("JMX disabled for log4j2. Not registering MBeans.");
+            LOGGER.debug("JMX disabled for Log4j2. Not registering MBeans.");
             return;
         }
 
@@ -194,7 +194,7 @@ public final class Server {
      */
     public static void unregisterMBeans() {
         if (isJmxDisabled()) {
-            LOGGER.debug("JMX disabled for log4j2. Not unregistering MBeans.");
+            LOGGER.debug("JMX disabled for Log4j2. Not unregistering MBeans.");
             return;
         }
         final MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();