minor logging fixes

This commit is contained in:
James Seibel
2024-07-21 17:06:58 -05:00
parent 44fe1eafb1
commit d9d9f3dad8
2 changed files with 2 additions and 2 deletions
@@ -108,7 +108,7 @@ public class ColumnRenderBufferBuilder
long builderEndTime = System.currentTimeMillis();
long buildMs = builderEndTime - builderStartTime;
LOGGER.debug("RenderRegion end QuadBuild @ " + renderSource.pos + " took: " + buildMs);
//LOGGER.debug("RenderRegion end QuadBuild @ " + renderSource.pos + " took: " + buildMs);
return builder;
}
@@ -292,7 +292,7 @@ public class LodRenderSection implements IDebugRenderable, AutoCloseable
}
catch (Exception e)
{
LOGGER.warn("Unable to get render source " + this.pos + ", error: " + e.getMessage(), e);
LOGGER.warn("Unable to get render source " + DhSectionPos.toString(this.pos) + ", error: " + e.getMessage(), e);
this.renderSourceLoadingRefFuture = null;
return null;
}