diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-05-31 00:04:43 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-05-31 00:04:43 +0800 |
| commit | 6352ba7abe3a01b694b01e03238b297eef447df4 (patch) | |
| tree | aad7988773f66bb1187da9befe18ad99c04b0f4f | |
| parent | 56670ef1475298f849b3ba06a38f6a47e7f81021 (diff) | |
| download | RoughlyEnoughItems-6352ba7abe3a01b694b01e03238b297eef447df4.tar.gz RoughlyEnoughItems-6352ba7abe3a01b694b01e03238b297eef447df4.tar.bz2 RoughlyEnoughItems-6352ba7abe3a01b694b01e03238b297eef447df4.zip | |
Prints stack trace on recipe + update cloth config
| -rw-r--r-- | gradle.properties | 2 | ||||
| -rw-r--r-- | src/main/java/me/shedaniel/rei/client/RecipeHelperImpl.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gradle.properties b/gradle.properties index 70739bdc7..9b2e8797d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ yarn_version=1.14.1+build.10 fabricloader_version=0.4.7+build.147 jankson_version=1.1.0 cloth_events_version=0.3.1.23 -cloth_config_version=0.2.1.14 +cloth_config_version=0.2.4.17 modmenu_version=1.5.4-85 fabric_keybindings=0.1.0+59147463 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()) |
