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 2022/01/01 13:17:53 UTC

[logging-log4j2] branch master updated: Don't be so chatty.

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


The following commit(s) were added to refs/heads/master by this push:
     new cc3b90e  Don't be so chatty.
cc3b90e is described below

commit cc3b90e69c02f480abfa1c3ea0604b6d9083ea4e
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Jan 1 08:17:50 2022 -0500

    Don't be so chatty.
---
 .../java/org/apache/logging/log4j/core/async/QueueFullAbstractTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/QueueFullAbstractTest.java b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/QueueFullAbstractTest.java
index 3297fe4..919335c 100644
--- a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/QueueFullAbstractTest.java
+++ b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/QueueFullAbstractTest.java
@@ -36,7 +36,7 @@ import com.lmax.disruptor.dsl.Disruptor;
  * Tests queue full scenarios abstract superclass.
  */
 public abstract class QueueFullAbstractTest {
-    protected static boolean TRACE = true;
+    protected static boolean TRACE = Boolean.getBoolean(QueueFullAbstractTest.class.getCanonicalName() + ".TRACE");
     protected BlockingAppender blockingAppender;
     protected Unlocker unlocker;