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 2016/09/06 05:56:54 UTC

logging-log4j2 git commit: Use StatusLogger from superclass.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 3104d129a -> b1029a9aa


Use StatusLogger from superclass.

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

Branch: refs/heads/master
Commit: b1029a9aa06fb3b0541d6a08abef2877bb4f936d
Parents: 3104d12
Author: Gary Gregory <gg...@apache.org>
Authored: Tue Sep 6 01:56:52 2016 -0400
Committer: Gary Gregory <gg...@apache.org>
Committed: Tue Sep 6 01:56:52 2016 -0400

----------------------------------------------------------------------
 .../org/apache/logging/log4j/core/async/AsyncLoggerDisruptor.java  | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/b1029a9a/log4j-core/src/main/java/org/apache/logging/log4j/core/async/AsyncLoggerDisruptor.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/async/AsyncLoggerDisruptor.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/async/AsyncLoggerDisruptor.java
index 211b92d..d677b09 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/async/AsyncLoggerDisruptor.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/async/AsyncLoggerDisruptor.java
@@ -25,7 +25,6 @@ import org.apache.logging.log4j.Level;
 import org.apache.logging.log4j.core.AbstractLifeCycle;
 import org.apache.logging.log4j.core.jmx.RingBufferAdmin;
 import org.apache.logging.log4j.core.util.Log4jThreadFactory;
-import org.apache.logging.log4j.status.StatusLogger;
 
 import com.lmax.disruptor.ExceptionHandler;
 import com.lmax.disruptor.RingBuffer;
@@ -43,7 +42,6 @@ import com.lmax.disruptor.dsl.ProducerType;
 class AsyncLoggerDisruptor extends AbstractLifeCycle {
     private static final int SLEEP_MILLIS_BETWEEN_DRAIN_ATTEMPTS = 50;
     private static final int MAX_DRAIN_ATTEMPTS_BEFORE_SHUTDOWN = 200;
-    private static final StatusLogger LOGGER = StatusLogger.getLogger();
 
     private volatile Disruptor<RingBufferLogEvent> disruptor;
     private ExecutorService executor;