aboutsummaryrefslogtreecommitdiff
path: root/forge/src/main
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2022-07-27 01:31:56 +0800
committershedaniel <daniel@shedaniel.me>2022-07-27 01:31:56 +0800
commit1d8b8e4e91adb33d208a5c3b4b2ccc36a0ef25a4 (patch)
tree0adc3b81bcecca9c4e9ff5144f4d5bc9b7eca360 /forge/src/main
parent664815d74ffdc030fd52f0ed0480b1cd615ef384 (diff)
downloadRoughlyEnoughItems-1d8b8e4e91adb33d208a5c3b4b2ccc36a0ef25a4.tar.gz
RoughlyEnoughItems-1d8b8e4e91adb33d208a5c3b4b2ccc36a0ef25a4.tar.bz2
RoughlyEnoughItems-1d8b8e4e91adb33d208a5c3b4b2ccc36a0ef25a4.zip
Add many more logging
Diffstat (limited to 'forge/src/main')
-rw-r--r--forge/src/main/java/me/shedaniel/rei/mixin/forge/MixinTagLoader.java4
1 files changed, 2 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 cb622841e..b48ddc175 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
@@ -28,8 +28,8 @@ import com.mojang.datafixers.util.Either;
import it.unimi.dsi.fastutil.ints.IntArrayList;
import it.unimi.dsi.fastutil.ints.IntList;
import it.unimi.dsi.fastutil.objects.Reference2ObjectMaps;
-import me.shedaniel.rei.RoughlyEnoughItemsCore;
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;
@@ -96,7 +96,7 @@ 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());
}
@Inject(method = "build(Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/List;)Lcom/mojang/datafixers/util/Either;", at = @At("RETURN"))