Added missing "break" which was causing additional unnecessary debug logging. Originally introduced due to a merge conflict with the metadata branch.

This commit is contained in:
CalDescent 2022-03-04 10:28:44 +00:00
parent a19e1f06c0
commit ef59c34165

View File

@ -1393,6 +1393,7 @@ public class Controller extends Thread {
case TRADE_PRESENCES:
TradeBot.getInstance().onTradePresencesMessage(peer, message);
break;
default:
LOGGER.debug(() -> String.format("Unhandled %s message [ID %d] from peer %s", message.getType().name(), message.getId(), peer));