removed logging spam

This commit is contained in:
kennycud 2025-07-12 14:03:35 -07:00
parent cea63e7ec7
commit 05d629e717

View File

@ -214,11 +214,9 @@ public class HSQLDBChatRepository implements ChatRepository {
// if the PrimaryTable is available, then use it // if the PrimaryTable is available, then use it
if( this.repository.getBlockRepository().getBlockchainHeight() > BlockChain.getInstance().getMultipleNamesPerAccountHeight()) { if( this.repository.getBlockRepository().getBlockchainHeight() > BlockChain.getInstance().getMultipleNamesPerAccountHeight()) {
LOGGER.debug("using PrimaryNames for chat transactions");
tableName = "PrimaryNames"; tableName = "PrimaryNames";
} }
else { else {
LOGGER.debug("using Names for chat transactions");
tableName = "Names"; tableName = "Names";
} }