Skip to content

Commit

Permalink
Merge branch '1.20.2' into 1.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rfresh2 committed Sep 30, 2024
2 parents 884782a + 5dbb8eb commit a084df4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions common/src/main/java/xaeroplus/module/impl/OldChunks.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ private void searchChunkAsync(final ChunkAccess chunk) {
Thread.sleep(500);
}
if (iterations == 3) {
XaeroPlus.LOGGER.info("[{}, {}] Too many search iterations", chunk.getPos().x, chunk.getPos().z);
XaeroPlus.LOGGER.debug("[{}, {}] Too many search iterations", chunk.getPos().x, chunk.getPos().z);
}
} catch (final Throwable e) {
XaeroPlus.LOGGER.error("Error searching for OldChunk in chunk: {}, {}", chunk.getPos().x, chunk.getPos().z, e);
XaeroPlus.LOGGER.debug("Error searching for OldChunk in chunk: {}, {}", chunk.getPos().x, chunk.getPos().z, e);
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ private void searchForPortalSkipChunks() {
}
cache.replaceState(portalAreaChunksBuf);
} catch (final Exception e) {
XaeroPlus.LOGGER.error("Error searching for portal skip chunks", e);
XaeroPlus.LOGGER.debug("Error searching for portal skip chunks", e);
}
}

Expand Down
2 changes: 1 addition & 1 deletion common/src/main/java/xaeroplus/module/impl/Portals.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private void findPortalInChunkAsync(final ChunkAccess chunk, final int waitMs) {
Thread.sleep(500);
}
} catch (final Throwable e) {
XaeroPlus.LOGGER.error("Error searching for portal in chunk: {}, {}", chunk.getPos().x, chunk.getPos().z, e);
XaeroPlus.LOGGER.debug("Error searching for portal in chunk: {}, {}", chunk.getPos().x, chunk.getPos().z, e);
}
});
}
Expand Down

0 comments on commit a084df4

Please sign in to comment.