Skip to content

Commit

Permalink
Stop logging for suspicious async chunkloads if they complete quickly…
Browse files Browse the repository at this point in the history
… enough
  • Loading branch information
embeddedt committed Nov 11, 2023
1 parent 215b797 commit 7c0f8b8
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ private void bailIfServerDead(int chunkX, int chunkZ, ChunkStatus requiredStatus
}
if(debugDeadServerAccess)
ModernFix.LOGGER.warn("Async loading of a chunk was requested, this might not be desirable", new Exception());
else
ModernFix.LOGGER.warn("Suspicious async chunkload, pass -Dmodernfix.debugBadChunkloading=true for more details");
try {
resultingChunk = future.get(10, TimeUnit.SECONDS);
if(resultingChunk.left().isPresent()) {
Expand Down

0 comments on commit 7c0f8b8

Please sign in to comment.