aboutsummaryrefslogtreecommitdiff
path: root/runtime/src/main/java/me/shedaniel/rei/plugin
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2022-04-09 02:41:21 +0800
committershedaniel <daniel@shedaniel.me>2022-04-12 18:01:16 +0800
commit7fafa7d9bbb2483313d86f946653f3ad64b2db18 (patch)
tree21274b1a51fd59bf7649f03c4990b21e478f9b6e /runtime/src/main/java/me/shedaniel/rei/plugin
parent0c73d4f3284e8706807deb53683d2c3d4f53372e (diff)
downloadRoughlyEnoughItems-7fafa7d9bbb2483313d86f946653f3ad64b2db18.tar.gz
RoughlyEnoughItems-7fafa7d9bbb2483313d86f946653f3ad64b2db18.tar.bz2
RoughlyEnoughItems-7fafa7d9bbb2483313d86f946653f3ad64b2db18.zip
Support for JEI 9.5, Close #821, Fix #807
Diffstat (limited to 'runtime/src/main/java/me/shedaniel/rei/plugin')
-rw-r--r--runtime/src/main/java/me/shedaniel/rei/plugin/test/REITestPlugin.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/src/main/java/me/shedaniel/rei/plugin/test/REITestPlugin.java b/runtime/src/main/java/me/shedaniel/rei/plugin/test/REITestPlugin.java
index 43035f012..7eed62ba2 100644
--- a/runtime/src/main/java/me/shedaniel/rei/plugin/test/REITestPlugin.java
+++ b/runtime/src/main/java/me/shedaniel/rei/plugin/test/REITestPlugin.java
@@ -33,6 +33,7 @@ import me.shedaniel.rei.api.common.entry.comparison.ItemComparatorRegistry;
import me.shedaniel.rei.api.common.plugins.PluginManager;
import me.shedaniel.rei.api.common.registry.ReloadStage;
import me.shedaniel.rei.api.common.util.EntryStacks;
+import me.shedaniel.rei.impl.common.InternalLogger;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.client.Minecraft;
@@ -42,7 +43,6 @@ import net.minecraft.world.item.Item;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.Items;
import net.minecraft.world.level.GameType;
-import org.apache.logging.log4j.LogManager;
import org.jetbrains.annotations.TestOnly;
import java.util.Random;
@@ -56,7 +56,7 @@ public class REITestPlugin implements REIClientPlugin {
@Override
public void preStage(PluginManager<REIClientPlugin> manager, ReloadStage stage) {
- LogManager.getLogger().error("REI Test Plugin is enabled! If you see this unintentionally, please report this!");
+ InternalLogger.getInstance().error("REI Test Plugin is enabled! If you see this unintentionally, please report this!");
}
@Override