aboutsummaryrefslogtreecommitdiff
path: root/fabric/src/main/java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2022-07-27 01:31:56 +0800
committershedaniel <daniel@shedaniel.me>2022-07-27 03:05:11 +0800
commit8c8b7236f89c2fc2fbd7f2c52800d8933b4cca5e (patch)
treea3e2fa205cece6124f8b78cf6035172bce63ebb7 /fabric/src/main/java
parent5c6c39f1b0cced155943b91053c56e39693f0377 (diff)
downloadRoughlyEnoughItems-8c8b7236f89c2fc2fbd7f2c52800d8933b4cca5e.tar.gz
RoughlyEnoughItems-8c8b7236f89c2fc2fbd7f2c52800d8933b4cca5e.tar.bz2
RoughlyEnoughItems-8c8b7236f89c2fc2fbd7f2c52800d8933b4cca5e.zip
Add many more logging
Diffstat (limited to 'fabric/src/main/java')
-rw-r--r--fabric/src/main/java/me/shedaniel/rei/mixin/fabric/MixinTagLoader.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/fabric/src/main/java/me/shedaniel/rei/mixin/fabric/MixinTagLoader.java b/fabric/src/main/java/me/shedaniel/rei/mixin/fabric/MixinTagLoader.java
index d82c5ab02..d526d4c1a 100644
--- a/fabric/src/main/java/me/shedaniel/rei/mixin/fabric/MixinTagLoader.java
+++ b/fabric/src/main/java/me/shedaniel/rei/mixin/fabric/MixinTagLoader.java
@@ -28,8 +28,9 @@ import com.google.common.collect.BiMap;
import com.google.common.collect.HashBiMap;
import it.unimi.dsi.fastutil.ints.IntArrayList;
import it.unimi.dsi.fastutil.ints.IntList;
-import me.shedaniel.rei.RoughlyEnoughItemsCore;
-import me.shedaniel.rei.plugin.common.displays.tag.TagNode;
+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;
@@ -97,6 +98,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());
}
}