diff options
author | Owen1212055 <[email protected]> | 2022-06-11 10:41:59 +0200 |
---|---|---|
committer | Nassim Jahnke <[email protected]> | 2022-06-11 10:41:59 +0200 |
commit | 1ccff4f5d1eb34fb9f0a33464056486f2aa72df2 (patch) | |
tree | 9d29601f8461e2dfcd4909e0fa52bc4e25b19bb2 /patches/server/0774-Don-t-log-debug-logging-being-disabled.patch | |
parent | c80df849c2355c1597b1fea9fa8850936db915f6 (diff) | |
download | Paper-1ccff4f5d1eb34fb9f0a33464056486f2aa72df2.tar.gz Paper-1ccff4f5d1eb34fb9f0a33464056486f2aa72df2.zip |
Readd mc-4 fix
Diffstat (limited to 'patches/server/0774-Don-t-log-debug-logging-being-disabled.patch')
-rw-r--r-- | patches/server/0774-Don-t-log-debug-logging-being-disabled.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/patches/server/0774-Don-t-log-debug-logging-being-disabled.patch b/patches/server/0774-Don-t-log-debug-logging-being-disabled.patch deleted file mode 100644 index 83460a961a..0000000000 --- a/patches/server/0774-Don-t-log-debug-logging-being-disabled.patch +++ /dev/null @@ -1,19 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Noah van der Aa <[email protected]> -Date: Tue, 14 Sep 2021 16:24:45 +0200 -Subject: [PATCH] Don't log debug logging being disabled - - -diff --git a/src/main/java/org/spigotmc/SpigotConfig.java b/src/main/java/org/spigotmc/SpigotConfig.java -index edc5f195cc3de8885b839469656650ba465346be..5d162f59fc5ef9adf7fa762b137bbcfca745d9c5 100644 ---- a/src/main/java/org/spigotmc/SpigotConfig.java -+++ b/src/main/java/org/spigotmc/SpigotConfig.java -@@ -382,7 +382,7 @@ public class SpigotConfig - Bukkit.getLogger().info( "Debug logging is enabled" ); - } else - { -- Bukkit.getLogger().info( "Debug logging is disabled" ); -+ // Bukkit.getLogger().info( "Debug logging is disabled" ); // Paper - Don't log if debug logging isn't enabled. - } - } - |