Paper/Spigot-Server-Patches/0254-Use-asynchronous-Log4j-2-loggers.patch

60 lines
2.0 KiB
Diff
Raw Normal View History

From 4c724f0548007a283243a22448e4b1696a7b474b Mon Sep 17 00:00:00 2001
2018-07-17 16:44:32 +02:00
From: Minecrell <minecrell@minecrell.net>
Date: Tue, 17 Jul 2018 16:42:17 +0200
Subject: [PATCH] Use asynchronous Log4j 2 loggers
diff --git a/pom.xml b/pom.xml
index 4ead09327..1f3571dd0 100644
2018-07-17 16:44:32 +02:00
--- a/pom.xml
+++ b/pom.xml
@@ -74,6 +74,13 @@
<artifactId>log4j-iostreams</artifactId>
2018-07-17 16:44:32 +02:00
<version>2.8.1</version>
</dependency>
+ <!-- Paper - Async loggers -->
+ <dependency>
+ <groupId>com.lmax</groupId>
+ <artifactId>disruptor</artifactId>
+ <version>3.4.2</version>
+ <scope>runtime</scope>
+ </dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
diff --git a/src/main/java/com/destroystokyo/paper/log/LogFullPolicy.java b/src/main/java/com/destroystokyo/paper/log/LogFullPolicy.java
new file mode 100644
index 000000000..db652a1f7
--- /dev/null
+++ b/src/main/java/com/destroystokyo/paper/log/LogFullPolicy.java
@@ -0,0 +1,17 @@
+package com.destroystokyo.paper.log;
+
+import org.apache.logging.log4j.Level;
+import org.apache.logging.log4j.core.async.AsyncQueueFullPolicy;
+import org.apache.logging.log4j.core.async.EventRoute;
+
+public final class LogFullPolicy implements AsyncQueueFullPolicy {
+
+ /*
+ * Prevents log calls being logged out of order when the log queue is full.
+ */
+
+ @Override
+ public EventRoute getRoute(final long backgroundThreadId, final Level level) {
+ return EventRoute.ENQUEUE;
+ }
+}
2018-07-17 16:44:32 +02:00
diff --git a/src/main/resources/log4j2.component.properties b/src/main/resources/log4j2.component.properties
new file mode 100644
index 000000000..f72f7425c
2018-07-17 16:44:32 +02:00
--- /dev/null
+++ b/src/main/resources/log4j2.component.properties
@@ -0,0 +1,2 @@
2018-07-17 16:44:32 +02:00
+Log4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector
2019-06-30 05:38:27 +02:00
+log4j2.AsyncQueueFullPolicy=com.destroystokyo.paper.log.LogFullPolicy
\ No newline at end of file
2018-07-17 16:44:32 +02:00
--
2.21.0
2018-07-17 16:44:32 +02:00