Remove unnecessary logging

This commit is contained in:
s809
2023-08-04 21:51:53 +05:00
parent 8ee4b8b4c9
commit 04fc4aa676
2 changed files with 2 additions and 2 deletions
@@ -126,7 +126,7 @@ public class WorldRemoteGenerationQueue implements IWorldGenerationQueue
throw throwable;
waitingTasks.remove(sectionPos);
LOGGER.info("FullDataSourceResponseMessage " + sectionPos);
LOGGER.debug("FullDataSourceResponseMessage " + sectionPos);
CompleteFullDataSource fullDataSource = response.getFullDataSource(sectionPos, level);
// Check is dimension has been switched - received data may no longer be relevant
@@ -71,7 +71,7 @@ public class DhServerLevel extends DhLevel implements IDhServerLevel
if (serverPlayerState.serverPlayer.getLevel() != this.serverLevelWrapper)
return;
LOGGER.info("FullDataSourceRequestMessage received at pos ({}, {}) with detail level {}", msg.dhSectionPos.sectionX, msg.dhSectionPos.sectionZ, msg.dhSectionPos.sectionDetailLevel);
LOGGER.debug("FullDataSourceRequestMessage received at pos ({}, {}) with detail level {}", msg.dhSectionPos.sectionX, msg.dhSectionPos.sectionZ, msg.dhSectionPos.sectionDetailLevel);
if (serverPlayerState.pendingFullDataRequests.incrementAndGet() > rateLimitConfig.get())
{