comment out a couple debug loggers

This commit is contained in:
James Seibel
2023-02-19 17:16:39 -06:00
parent cf34457d20
commit 924465a788
2 changed files with 2 additions and 2 deletions
@@ -236,7 +236,7 @@ public abstract class AbstractMetaDataContainerFile
{
// Atomic move / replace the actual file
Files.move(tempFile.toPath(), this.file.toPath(), StandardCopyOption.REPLACE_EXISTING); // TODO couldn't StandardCopyOption. also work here?
LOGGER.info("replaced file: "+this.file.toPath());
//LOGGER.info("replaced file: "+this.file.toPath());
}
}
finally
@@ -223,7 +223,7 @@ public class LodQuadTree implements AutoCloseable
if (!gridList.getCenter().equals(expectedCenterPos))
{
LOGGER.info("TreeTick: Moving ring list "+sectionDetailLevel+" from "+gridList.getCenter()+" to "+expectedCenterPos);
// LOGGER.info("TreeTick: Moving ring list "+sectionDetailLevel+" from "+gridList.getCenter()+" to "+expectedCenterPos);
gridList.moveTo(expectedCenterPos.x, expectedCenterPos.y, LodRenderSection::dispose);
}
}