Skip to content

Commit 32875b4

Browse files
committed
8948: Nag when timings is enabled or a plugin creates a new Timing
1 parent 5c78e77 commit 32875b4

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

patches/api/0010-Timings-v2.patch

+16-2
Original file line numberDiff line numberDiff line change
@@ -1264,10 +1264,10 @@ index 0000000000000000000000000000000000000000..df142a89b8c43acb81eb383eac0ef048
12641264
+}
12651265
diff --git a/src/main/java/co/aikar/timings/Timings.java b/src/main/java/co/aikar/timings/Timings.java
12661266
new file mode 100644
1267-
index 0000000000000000000000000000000000000000..852f5673fb3f9c7d7ad44b01d04b3dcdf7352e50
1267+
index 0000000000000000000000000000000000000000..c5ae86919e7ad8cc902405e34ddca633d6354e6b
12681268
--- /dev/null
12691269
+++ b/src/main/java/co/aikar/timings/Timings.java
1270-
@@ -0,0 +1,300 @@
1270+
@@ -0,0 +1,314 @@
12711271
+/*
12721272
+ * This file is licensed under the MIT License (MIT).
12731273
+ *
@@ -1320,6 +1320,7 @@ index 0000000000000000000000000000000000000000..852f5673fb3f9c7d7ad44b01d04b3dcd
13201320
+ static boolean verboseEnabled = false;
13211321
+ private static int historyInterval = -1;
13221322
+ private static int historyLength = -1;
1323+
+ private static boolean warnedAboutDeprecationOnEnable;
13231324
+
13241325
+ private Timings() {}
13251326
+
@@ -1354,6 +1355,7 @@ index 0000000000000000000000000000000000000000..852f5673fb3f9c7d7ad44b01d04b3dcd
13541355
+ @NotNull
13551356
+ public static Timing of(@NotNull Plugin plugin, @NotNull String name, @Nullable Timing groupHandler) {
13561357
+ Preconditions.checkNotNull(plugin, "Plugin can not be null");
1358+
+ Bukkit.getLogger().warning(String.format("Plugin '%s' is creating timing '%s' - this is deprecated behavior, please report it to the authors: %s", plugin.getName(), name, String.join(", ", plugin.getDescription().getAuthors())));
13571359
+ return TimingsManager.getHandler(plugin.getName(), name, groupHandler);
13581360
+ }
13591361
+
@@ -1410,9 +1412,21 @@ index 0000000000000000000000000000000000000000..852f5673fb3f9c7d7ad44b01d04b3dcd
14101412
+ */
14111413
+ public static void setTimingsEnabled(boolean enabled) {
14121414
+ timingsEnabled = enabled;
1415+
+ warnAboutDeprecationOnEnable();
14131416
+ reset();
14141417
+ }
14151418
+
1419+
+ private static void warnAboutDeprecationOnEnable() {
1420+
+ if (timingsEnabled && !warnedAboutDeprecationOnEnable) {
1421+
+ Bukkit.getLogger().warning(String.join("\n",
1422+
+ "[!] The timings system has been enabled but has been scheduled for removal from Paper in the future.",
1423+
+ " We recommend installing the spark profiler as a replacement: https://spark.lucko.me/",
1424+
+ " For more information please visit: https://github.com/PaperMC/Paper/issues/8948"
1425+
+ ));
1426+
+ warnedAboutDeprecationOnEnable = true;
1427+
+ }
1428+
+ }
1429+
+
14161430
+ /**
14171431
+ * <p>Sets whether or not the Timings should monitor at Verbose level.</p>
14181432
+ *

0 commit comments

Comments
 (0)