Skip to content

Commit 7c0f8b8

Browse files
committed
Stop logging for suspicious async chunkloads if they complete quickly enough
1 parent 215b797 commit 7c0f8b8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

common/src/main/java/org/embeddedt/modernfix/common/mixin/bugfix/chunk_deadlock/ServerChunkCacheMixin.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ private void bailIfServerDead(int chunkX, int chunkZ, ChunkStatus requiredStatus
5050
}
5151
if(debugDeadServerAccess)
5252
ModernFix.LOGGER.warn("Async loading of a chunk was requested, this might not be desirable", new Exception());
53-
else
54-
ModernFix.LOGGER.warn("Suspicious async chunkload, pass -Dmodernfix.debugBadChunkloading=true for more details");
5553
try {
5654
resultingChunk = future.get(10, TimeUnit.SECONDS);
5755
if(resultingChunk.left().isPresent()) {

0 commit comments

Comments
 (0)