Change RenderSourceFileHandler cache log from info -> debug

This commit is contained in:
James Seibel
2023-08-19 08:50:20 -05:00
parent a30bfdf397
commit 0e1c4c49c2
@@ -448,7 +448,7 @@ public class RenderSourceFileHandler implements ILodRenderSourceProvider
// Skip updating the cache if the data file is already up-to-date
FullDataMetaFile dataFile = this.fullDataSourceProvider.getFileIfExist(file.pos);
if (!ALWAYS_INVALIDATE_CACHE && dataFile != null && dataFile.baseMetaData.checksum == file.baseMetaData.dataVersion.get()) {
LOGGER.info("Skipping render cache update for {}", file.pos);
LOGGER.debug("Skipping render cache update for {}", file.pos);
renderSource.localVersion.incrementAndGet();
return CompletableFuture.completedFuture(null);
}