You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+ 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())));
+ 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
+
+
1416
1430
+ /**
1417
1431
+ * <p>Sets whether or not the Timings should monitor at Verbose level.</p>
0 commit comments