@@ -32,7 +32,7 @@ public void initialize(MinecraftServer _server) {
3232 }
3333
3434 private void handlePendingRegistrations () {
35- ScriptsChunkLoadersMod .LOGGER .info ("Handling pending registrations" );
35+ ScriptsChunkLoadersMod .LOGGER .debug ("Handling pending registrations" );
3636 pendingRegistrations .forEach (this ::registerChunkLoader );
3737 pendingRegistrations .clear ();
3838 }
@@ -46,7 +46,7 @@ public void registerChunkLoader(Entity entity) {
4646 var chunkPos = entity .chunkPosition ();
4747
4848 removeChunkLoader (entity );
49- ScriptsChunkLoadersMod .LOGGER .info ("Adding {} to {}" , entity , entity .level ().dimension ().identifier ());
49+ ScriptsChunkLoadersMod .LOGGER .debug ("Adding {} to {}" , entity , entity .level ().dimension ().identifier ());
5050
5151 var worldRegistryKey = entity .level ().dimension ();
5252 var worldChunks = forceLoadedChunks .computeIfAbsent (worldRegistryKey , s -> new HashMap <>());
@@ -55,13 +55,13 @@ public void registerChunkLoader(Entity entity) {
5555 }
5656
5757 public void removeChunkLoader (Entity entity ) {
58- ScriptsChunkLoadersMod .LOGGER .info ("Removing {} from {}" , entity , entity .level ().dimension ().identifier ());
58+ ScriptsChunkLoadersMod .LOGGER .debug ("Removing {} from {}" , entity , entity .level ().dimension ().identifier ());
5959 var uuid = entity .getUUID ();
6060
6161 var worldRegistryKey = entity .level ().dimension ();
6262 var worldChunks = forceLoadedChunks .get (worldRegistryKey );
6363
64- ScriptsChunkLoadersMod .LOGGER .info ("worldChunks {}" , worldChunks );
64+ ScriptsChunkLoadersMod .LOGGER .debug ("worldChunks {}" , worldChunks );
6565 if (worldChunks == null ) return ;
6666
6767 var iterator = worldChunks .entrySet ().iterator ();
0 commit comments