2022-08-21 04:57:17 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: =?UTF-8?q?Jos=C3=A9=20Miguel=20Moreno?= <josemmo@pm.me>
|
|
|
|
Date: Sat, 5 Jun 2021 13:45:15 +0200
|
|
|
|
Subject: [PATCH] Fix plugin loggers on server shutdown
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/log/CustomLogManager.java b/src/main/java/io/papermc/paper/log/CustomLogManager.java
|
|
|
|
new file mode 100644
|
|
|
|
index 0000000000000000000000000000000000000000..c1d3bac79bb8b4796c013ff4472f75dcd79602dc
|
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/log/CustomLogManager.java
|
|
|
|
@@ -0,0 +1,26 @@
|
|
|
|
+package io.papermc.paper.log;
|
|
|
|
+
|
|
|
|
+import java.util.logging.LogManager;
|
|
|
|
+
|
|
|
|
+public class CustomLogManager extends LogManager {
|
|
|
|
+ private static CustomLogManager instance;
|
|
|
|
+
|
|
|
|
+ public CustomLogManager() {
|
|
|
|
+ instance = this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void reset() {
|
|
|
|
+ // Ignore calls to this method
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private void superReset() {
|
|
|
|
+ super.reset();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static void forceReset() {
|
|
|
|
+ if (instance != null) {
|
|
|
|
+ instance.superReset();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2024-10-31 22:30:18 +01:00
|
|
|
index 25e2baf2109b27887e4b3631d948907d9d8d65a2..3fc8e626bc66f3cf32d165099ed7a6e4300e8146 100644
|
2022-08-21 04:57:17 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2024-10-31 22:30:18 +01:00
|
|
|
@@ -1276,6 +1276,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2024-01-23 12:06:27 +01:00
|
|
|
} catch (Exception ignored) {
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
+ io.papermc.paper.log.CustomLogManager.forceReset(); // Paper - Reset loggers after shutdown
|
|
|
|
this.onServerExit();
|
|
|
|
}
|
|
|
|
|
2022-08-21 04:57:17 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/Main.java b/src/main/java/org/bukkit/craftbukkit/Main.java
|
Rework async chunk api implementation
Firstly, the old methods all routed to the CompletableFuture method.
However, the CF method could not guarantee that if the caller
was off-main that the future would be "completed" on-main. Since
the callback methods used the CF one, this meant that the callback
methods did not guarantee that the callbacks were to be called on
the main thread.
Now, all methods route to getChunkAtAsync(x, z, gen, urgent, cb)
so that the methods with the callback are guaranteed to invoke
the callback on the main thread. The CF behavior remains unchanged;
it may still appear to complete on main if invoked off-main.
Secondly, remove the scheduleOnMain invocation in the async
chunk completion. This unnecessarily delays the callback
by 1 tick.
Thirdly, add getChunksAtAsync(minX, minZ, maxX, maxZ, ...) which
will load chunks within an area. This method is provided as a helper
as keeping all chunks loaded within an area can be complicated to
implement for plugins (due to the lacking ticket API), and is
already implemented internally anyways.
Fourthly, remove the ticket addition that occured with getChunkAt
and getChunkAtAsync. The ticket addition may delay the unloading
of the chunk unnecessarily. It also fixes a very rare timing bug
where the future/callback would be completed after the chunk
unloads.
2024-11-19 07:34:32 +01:00
|
|
|
index 29838b7c28409776e124641878def8d6d87630f5..be0d38544395a9b3befb898bb961f34e32fe9509 100644
|
2022-08-21 04:57:17 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/Main.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/Main.java
|
2024-05-16 02:06:59 +02:00
|
|
|
@@ -19,6 +19,12 @@ public class Main {
|
2022-08-21 04:57:17 +02:00
|
|
|
public static boolean useJline = true;
|
|
|
|
public static boolean useConsole = true;
|
|
|
|
|
2024-01-18 15:56:25 +01:00
|
|
|
+ // Paper start - Reset loggers after shutdown
|
2022-08-21 04:57:17 +02:00
|
|
|
+ static {
|
|
|
|
+ System.setProperty("java.util.logging.manager", "io.papermc.paper.log.CustomLogManager");
|
|
|
|
+ }
|
2024-01-18 15:56:25 +01:00
|
|
|
+ // Paper end - Reset loggers after shutdown
|
2022-08-21 04:57:17 +02:00
|
|
|
+
|
|
|
|
public static void main(String[] args) {
|
|
|
|
// Paper start
|
|
|
|
final String warnWhenLegacyFormattingDetected = String.join(".", "net", "kyori", "adventure", "text", "warnWhenLegacyFormattingDetected");
|