You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by vy...@apache.org on 2022/02/21 08:48:50 UTC

[logging-log4j2] branch master updated (9cc2967 -> 8e5df97)

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

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


    from 9cc2967  LOG4J2-3304 - Mark LogManager as initialized when a LoggerFactory is specified
     new 11cb1f7  Fix ThreadLocalRecyclerNestedLoggingTest.
     new 8e5df97  Fix Log4j2SpringBootInitTest.

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:
 .../layout/template/json/ThreadLocalRecyclerNestedLoggingTest.java | 7 +++----
 .../apache/logging/log4j/spring/boot/Log4j2SpringBootInitTest.java | 2 +-
 2 files changed, 4 insertions(+), 5 deletions(-)

[logging-log4j2] 02/02: Fix Log4j2SpringBootInitTest.

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

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

commit 8e5df97d62d02546847eac0a330aa1407f3520bb
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Mon Feb 21 09:48:35 2022 +0100

    Fix Log4j2SpringBootInitTest.
---
 .../org/apache/logging/log4j/spring/boot/Log4j2SpringBootInitTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/log4j-spring-boot/src/test/java/org/apache/logging/log4j/spring/boot/Log4j2SpringBootInitTest.java b/log4j-spring-boot/src/test/java/org/apache/logging/log4j/spring/boot/Log4j2SpringBootInitTest.java
index fd36fc2..d909c67 100644
--- a/log4j-spring-boot/src/test/java/org/apache/logging/log4j/spring/boot/Log4j2SpringBootInitTest.java
+++ b/log4j-spring-boot/src/test/java/org/apache/logging/log4j/spring/boot/Log4j2SpringBootInitTest.java
@@ -19,7 +19,7 @@ package org.apache.logging.log4j.spring.boot;
 import org.apache.logging.log4j.LogManager;
 import org.apache.logging.log4j.Logger;
 import org.apache.logging.log4j.core.LoggerContext;
-import org.apache.logging.log4j.test.appender.ListAppender;
+import org.apache.logging.log4j.core.test.appender.ListAppender;
 import org.junit.jupiter.api.Test;
 import org.junitpioneer.jupiter.SetSystemProperty;
 import org.springframework.boot.ApplicationArguments;

[logging-log4j2] 01/02: Fix ThreadLocalRecyclerNestedLoggingTest.

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

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

commit 11cb1f70402cb601efc3e19a218f6c00235fbb15
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Mon Feb 21 09:48:24 2022 +0100

    Fix ThreadLocalRecyclerNestedLoggingTest.
---
 .../layout/template/json/ThreadLocalRecyclerNestedLoggingTest.java | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/log4j-layout-template-json/src/test/java/org/apache/logging/log4j/layout/template/json/ThreadLocalRecyclerNestedLoggingTest.java b/log4j-layout-template-json/src/test/java/org/apache/logging/log4j/layout/template/json/ThreadLocalRecyclerNestedLoggingTest.java
index fb4a841..ec97185 100644
--- a/log4j-layout-template-json/src/test/java/org/apache/logging/log4j/layout/template/json/ThreadLocalRecyclerNestedLoggingTest.java
+++ b/log4j-layout-template-json/src/test/java/org/apache/logging/log4j/layout/template/json/ThreadLocalRecyclerNestedLoggingTest.java
@@ -18,11 +18,10 @@ package org.apache.logging.log4j.layout.template.json;
 
 import org.apache.logging.log4j.Logger;
 import org.apache.logging.log4j.core.LoggerContext;
-import org.apache.logging.log4j.core.layout.AbstractStringLayout;
-import org.apache.logging.log4j.junit.LoggerContextSource;
-import org.apache.logging.log4j.junit.Named;
+import org.apache.logging.log4j.core.test.appender.ListAppender;
+import org.apache.logging.log4j.core.test.junit.LoggerContextSource;
+import org.apache.logging.log4j.core.test.junit.Named;
 import org.apache.logging.log4j.layout.template.json.util.ThreadLocalRecycler;
-import org.apache.logging.log4j.test.appender.ListAppender;
 import org.assertj.core.api.Assertions;
 import org.junit.jupiter.api.Test;