diff options
| author | shedaniel <daniel@shedaniel.me> | 2022-04-09 02:41:21 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2022-04-12 18:01:16 +0800 |
| commit | 7fafa7d9bbb2483313d86f946653f3ad64b2db18 (patch) | |
| tree | 21274b1a51fd59bf7649f03c4990b21e478f9b6e /runtime/src/main/java/me/shedaniel/rei/plugin | |
| parent | 0c73d4f3284e8706807deb53683d2c3d4f53372e (diff) | |
| download | RoughlyEnoughItems-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.java | 4 |
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 |
