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 2020/05/23 16:04:05 UTC

[logging-log4j2] branch release-2.x updated (467cd10 -> fd823f3)

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

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


    from 467cd10  [LOG4J2-2851] Drop log4j-mongodb2 module.
     new 3bffcbc  Don't dump to the console during tests unless you really have to.
     new fd823f3  [LOG4J2-2851] Drop log4j-mongodb2 module.

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/config/Log4j1ConfigurationFactoryTest.java     |  2 +-
 pom.xml                                                  | 16 ----------------
 2 files changed, 1 insertion(+), 17 deletions(-)


[logging-log4j2] 02/02: [LOG4J2-2851] Drop log4j-mongodb2 module.

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

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

commit fd823f388e83e9e59f29b5ca0a5f103453e660ca
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat May 23 12:03:58 2020 -0400

    [LOG4J2-2851] Drop log4j-mongodb2 module.
    
    Simplify version management.
---
 pom.xml | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/pom.xml b/pom.xml
index 296b0e0..ae36107 100644
--- a/pom.xml
+++ b/pom.xml
@@ -196,7 +196,6 @@
     <flumeVersion>1.9.0</flumeVersion>
     <disruptorVersion>3.4.2</disruptorVersion>
     <conversantDisruptorVersion>1.2.15</conversantDisruptorVersion> <!-- Version 1.2.11 requires Java 8 -->
-    <mongodb2.version>2.14.3</mongodb2.version>
     <mongodb3.version>3.12.4</mongodb3.version>
     <mongodb4.version>4.0.3</mongodb4.version>
     <groovy.version>3.0.3</groovy.version>
@@ -757,21 +756,6 @@
         <scope>provided</scope>
       </dependency>
       <dependency>
-        <groupId>org.mongodb</groupId>
-        <artifactId>mongo-java-driver</artifactId>
-        <version>${mongodb2.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.mongodb</groupId>
-        <artifactId>mongodb-driver</artifactId>
-        <version>${mongodb3.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.mongodb</groupId>
-        <artifactId>bson</artifactId>
-        <version>${mongodb3.version}</version>
-      </dependency>
-      <dependency>
         <groupId>org.lightcouch</groupId>
         <artifactId>lightcouch</artifactId>
         <version>0.0.6</version>


[logging-log4j2] 01/02: Don't dump to the console during tests unless you really have to.

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

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

commit 3bffcbc2b19b81625838078483f81766986f4970
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri May 22 19:14:10 2020 -0400

    Don't dump to the console during tests unless you really have to.
---
 .../java/org/apache/log4j/config/Log4j1ConfigurationFactoryTest.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/log4j-1.2-api/src/test/java/org/apache/log4j/config/Log4j1ConfigurationFactoryTest.java b/log4j-1.2-api/src/test/java/org/apache/log4j/config/Log4j1ConfigurationFactoryTest.java
index ebe3e54..7d40a3c 100644
--- a/log4j-1.2-api/src/test/java/org/apache/log4j/config/Log4j1ConfigurationFactoryTest.java
+++ b/log4j-1.2-api/src/test/java/org/apache/log4j/config/Log4j1ConfigurationFactoryTest.java
@@ -169,7 +169,7 @@ public class Log4j1ConfigurationFactoryTest {
             final Configuration configuration = getConfiguration("config-1.2/log4j-system-properties-1.properties");
             final RollingFileAppender appender = configuration.getAppender("RFA");
 			appender.stop(10, TimeUnit.SECONDS);
-            System.out.println("expected: " + tempFileName + " Actual: " + appender.getFileName());
+            // System.out.println("expected: " + tempFileName + " Actual: " + appender.getFileName());
             assertEquals(tempFileName, appender.getFileName());
         } finally {
 			try {