2018-12-15 01:17:27 +00:00
|
|
|
From f88d82ab0d6f8d8ab30383396e41b6cb588fdc32 Mon Sep 17 00:00:00 2001
|
2018-07-17 14:44:32 +00: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
|
2018-12-15 01:17:27 +00:00
|
|
|
index f4dcd8564..282410a22 100644
|
2018-07-17 14:44:32 +00:00
|
|
|
--- a/pom.xml
|
|
|
|
+++ b/pom.xml
|
2018-08-26 18:11:49 +00:00
|
|
|
@@ -73,6 +73,13 @@
|
|
|
|
<artifactId>log4j-iostreams</artifactId>
|
2018-07-17 14:44:32 +00: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>
|
2018-08-26 18:11:49 +00:00
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
2018-07-17 14:44:32 +00:00
|
|
|
diff --git a/src/main/resources/log4j2.component.properties b/src/main/resources/log4j2.component.properties
|
|
|
|
new file mode 100644
|
2018-12-15 01:17:27 +00:00
|
|
|
index 000000000..ee7c90784
|
2018-07-17 14:44:32 +00:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/resources/log4j2.component.properties
|
|
|
|
@@ -0,0 +1 @@
|
|
|
|
+Log4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector
|
|
|
|
--
|
2018-12-15 01:17:27 +00:00
|
|
|
2.20.0
|
2018-07-17 14:44:32 +00:00
|
|
|
|