From 6352ba7abe3a01b694b01e03238b297eef447df4 Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 31 May 2019 00:04:43 +0800 Subject: Prints stack trace on recipe + update cloth config --- src/main/java/me/shedaniel/rei/client/RecipeHelperImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/me/shedaniel/rei/client/RecipeHelperImpl.java') diff --git a/src/main/java/me/shedaniel/rei/client/RecipeHelperImpl.java b/src/main/java/me/shedaniel/rei/client/RecipeHelperImpl.java index ba3b7ae9b..5b22482e9 100644 --- a/src/main/java/me/shedaniel/rei/client/RecipeHelperImpl.java +++ b/src/main/java/me/shedaniel/rei/client/RecipeHelperImpl.java @@ -225,7 +225,7 @@ public class RecipeHelperImpl implements RecipeHelper { if (pluginDisabler.isFunctionEnabled(identifier, PluginFunction.REGISTER_OTHERS)) plugin.registerOthers(this); } catch (Exception e) { - RoughlyEnoughItemsCore.LOGGER.error("[REI] %s plugin failed to load: %s", identifier.toString(), e.getLocalizedMessage()); + RoughlyEnoughItemsCore.LOGGER.error("[REI] " + identifier.toString() + " plugin failed to load!", e); } }); if (getDisplayVisibilityHandlers().isEmpty()) -- cgit