diff options
| author | shedaniel <daniel@shedaniel.me> | 2022-07-27 01:31:56 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2022-07-27 03:05:11 +0800 |
| commit | 8c8b7236f89c2fc2fbd7f2c52800d8933b4cca5e (patch) | |
| tree | a3e2fa205cece6124f8b78cf6035172bce63ebb7 /forge | |
| parent | 5c6c39f1b0cced155943b91053c56e39693f0377 (diff) | |
| download | RoughlyEnoughItems-8c8b7236f89c2fc2fbd7f2c52800d8933b4cca5e.tar.gz RoughlyEnoughItems-8c8b7236f89c2fc2fbd7f2c52800d8933b4cca5e.tar.bz2 RoughlyEnoughItems-8c8b7236f89c2fc2fbd7f2c52800d8933b4cca5e.zip | |
Add many more logging
Diffstat (limited to 'forge')
| -rw-r--r-- | forge/src/main/java/me/shedaniel/rei/mixin/forge/MixinTagLoader.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/forge/src/main/java/me/shedaniel/rei/mixin/forge/MixinTagLoader.java b/forge/src/main/java/me/shedaniel/rei/mixin/forge/MixinTagLoader.java index 66606b9bd..071e849f0 100644 --- a/forge/src/main/java/me/shedaniel/rei/mixin/forge/MixinTagLoader.java +++ b/forge/src/main/java/me/shedaniel/rei/mixin/forge/MixinTagLoader.java @@ -26,7 +26,9 @@ package me.shedaniel.rei.mixin.forge; import com.google.common.base.Stopwatch; import it.unimi.dsi.fastutil.ints.IntArrayList; import it.unimi.dsi.fastutil.ints.IntList; -import me.shedaniel.rei.RoughlyEnoughItemsCore; +import it.unimi.dsi.fastutil.objects.Reference2ObjectMaps; +import me.shedaniel.rei.api.common.util.CollectionUtils; +import me.shedaniel.rei.impl.common.InternalLogger; import me.shedaniel.rei.plugin.common.displays.tag.TagNodes; import net.minecraft.core.Registry; import net.minecraft.resources.ResourceKey; @@ -93,6 +95,6 @@ public class MixinTagLoader<T> { } } - RoughlyEnoughItemsCore.LOGGER.info("Processed %d tags in %s for %s", tagDataMap.size(), stopwatch.stop(), resourceKey.location()); + InternalLogger.getInstance().debug("Processed %d tags in %s for %s", tagDataMap.size(), stopwatch.stop(), resourceKey.location()); } } |
