-
Notifications
You must be signed in to change notification settings - Fork 9
Description
The chunk loaders seem to work just perfectly, but I am getting a lot of log spam:
[13:52:44] [Server thread/INFO]: Adding class_1700['Chunk Loader'/17, l='ServerLevel[world]', x=143.74, y=85.06, z=48.49] to minecraft:overworld
[13:52:46] [Server thread/INFO]: Re-registering chunk loader
[13:52:46] [Server thread/INFO]: Removing class_1700['Chunk Loader'/17, l='ServerLevel[world]', x=144.27, y=85.06, z=57.51] from minecraft:overworld
[13:52:46] [Server thread/INFO]: worldChunks {30064771064=[744ca65f-55b9-4fee-b0c4-a18965428460], 12884901896=[0562825a-953d-4173-a1a4-167e0c275580], 25769803767=[5e05621e-07f6-40ce-83e2-83b383696491], 30064771080=[c373068d-7a28-4d21-bb4e-4e5a297e2e9b]}
It looks like the following lines are at INFO level and maybe should be at DEBUG? Or maybe it's creating/removing them as a bug, I'm not sure. I think that is for a moving minecart. Maybe when they are created it logs at INFO the one time, but only logs the subsequent events at DEBUG level?
scripts-chunk-loaders/src/main/java/io/nihlen/scriptschunkloaders/ChunkLoaderManager.java
Line 47 in 26af41c
ScriptsChunkLoadersMod.LOGGER.info("Adding {} to {}", entity, entity.getWorld().getRegistryKey().getValue()); scripts-chunk-loaders/src/main/java/io/nihlen/scriptschunkloaders/ChunkLoaderManager.java
Line 56 in 26af41c
ScriptsChunkLoadersMod.LOGGER.info("Removing {} from {}", entity, entity.getWorld().getRegistryKey().getValue()); scripts-chunk-loaders/src/main/java/io/nihlen/scriptschunkloaders/ChunkLoaderManager.java
Line 62 in 26af41c
ScriptsChunkLoadersMod.LOGGER.info("worldChunks {}", worldChunks);
Minecraft: 1.21
Fabric: 0.15.11
Mod version: 0.3.1