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 2021/12/30 16:30:50 UTC

[logging-log4j2] branch master updated (99b4224 -> e78db98)

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git.


    from 99b4224  Match Javadoc to enum value.
     new 01db348  Log4j 1.2 bridge LogManager class default constructor should be public.
     new e78db98  Log4j 1.2 bridge LogManager class default constructor should be public.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 log4j-1.2-api/src/main/java/org/apache/log4j/LogManager.java | 3 ---
 src/changes/changes.xml                                      | 3 +++
 2 files changed, 3 insertions(+), 3 deletions(-)

[logging-log4j2] 02/02: Log4j 1.2 bridge LogManager class default constructor should be public.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git

commit e78db98fd603c47293d538481b5e89c6a8cb8eea
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Dec 30 11:30:46 2021 -0500

    Log4j 1.2 bridge LogManager class default constructor should be public.
---
 src/changes/changes.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 4ee0b72..462cbc2 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -200,6 +200,9 @@
       <action dev="ggregory" type="fix">
         Log4j 1.2 bridge method org.apache.log4j.Category.getDefaultHierarchy() is missing.
       </action>
+      <action dev="ggregory" type="fix">
+        Log4j 1.2 bridge LogManager class default constructor should be public.
+      </action>
     </release>
     <release version="2.17.1" date="2021-MM-DD" description="GA Release 2.17.1">
       <action issue="LOG4J2-3292" dev="ckozak" type="fix">

[logging-log4j2] 01/02: Log4j 1.2 bridge LogManager class default constructor should be public.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git

commit 01db348ccb35bbacee206bc6bf5f3a9b8992919c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Dec 30 11:29:03 2021 -0500

    Log4j 1.2 bridge LogManager class default constructor should be public.
---
 log4j-1.2-api/src/main/java/org/apache/log4j/LogManager.java | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/log4j-1.2-api/src/main/java/org/apache/log4j/LogManager.java b/log4j-1.2-api/src/main/java/org/apache/log4j/LogManager.java
index d595988..d7d4018 100644
--- a/log4j-1.2-api/src/main/java/org/apache/log4j/LogManager.java
+++ b/log4j-1.2-api/src/main/java/org/apache/log4j/LogManager.java
@@ -82,9 +82,6 @@ public final class LogManager {
         isLog4jCore = core;
     }
 
-    private LogManager() {
-    }
-
     public static Logger getRootLogger() {
         return Category.getInstance(PrivateManager.getContext(), Strings.EMPTY);
     }