Comment out trace logs

These logs aren't printed and will just increase GC pressure for strings
This commit is contained in:
James Seibel
2024-03-23 16:18:40 -05:00
parent cd5c3d9f13
commit 9cd48fb5d7
6 changed files with 11 additions and 9 deletions
@@ -178,7 +178,7 @@ public class ForgeClientProxy implements AbstractModInitializer.IEventProxy
return;
}
LOGGER.trace("interact or block place event at blockPos: " + event.getPos());
//LOGGER.trace("interact or block place event at blockPos: " + event.getPos());
#if MC_VER < MC_1_19_2
LevelAccessor level = event.getWorld();
@@ -197,7 +197,7 @@ public class ForgeClientProxy implements AbstractModInitializer.IEventProxy
return;
}
LOGGER.trace("break or block attack at blockPos: " + event.getPos());
//LOGGER.trace("break or block attack at blockPos: " + event.getPos());
#if MC_VER < MC_1_19_2
LevelAccessor level = event.getWorld();