aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2023-10-23 21:28:01 +0800
committershedaniel <daniel@shedaniel.me>2023-10-23 21:49:48 +0800
commit6502d7f3d6402d4f0cb64b82de6aa7efe87ea6a0 (patch)
tree71fd5b679cdae69359d0b2a5c1ae1b9bcec43522
parent48776895c1d0df467d3b10df4dad18102e3aaa20 (diff)
downloadRoughlyEnoughItems-6502d7f3d6402d4f0cb64b82de6aa7efe87ea6a0.tar.gz
RoughlyEnoughItems-6502d7f3d6402d4f0cb64b82de6aa7efe87ea6a0.tar.bz2
RoughlyEnoughItems-6502d7f3d6402d4f0cb64b82de6aa7efe87ea6a0.zip
Add debug message for plugin reloads
-rw-r--r--runtime/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCoreClient.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCoreClient.java b/runtime/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCoreClient.java
index 5874799a3..96a697253 100644
--- a/runtime/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCoreClient.java
+++ b/runtime/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsCoreClient.java
@@ -479,6 +479,7 @@ public class RoughlyEnoughItemsCoreClient {
}
lastReload.setValue(System.currentTimeMillis());
}
+ InternalLogger.getInstance().debug("Starting Reload Plugins of stage " + start, new Throwable());
if (ConfigObject.getInstance().doesRegisterRecipesInAnotherThread()) {
Future<?>[] futures = new Future<?>[1];
CompletableFuture<Void> future = CompletableFuture.runAsync(() -> RoughlyEnoughItemsCore._reloadPlugins(start), RELOAD_PLUGINS)