mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Move log before super handler to maintain correct order of logs
Signed-off-by: HenrikJannsen <boilingfrog@gmx.com>
This commit is contained in:
parent
4c237dcf0d
commit
72b55f429a
@ -167,11 +167,11 @@ public abstract class SellerProtocol extends DisputeProtocol {
|
||||
|
||||
@Override
|
||||
protected void onTradeMessage(TradeMessage message, NodeAddress peer) {
|
||||
super.onTradeMessage(message, peer);
|
||||
|
||||
log.info("Received {} from {} with tradeId {} and uid {}",
|
||||
message.getClass().getSimpleName(), peer, message.getTradeId(), message.getUid());
|
||||
|
||||
super.onTradeMessage(message, peer);
|
||||
|
||||
if (message instanceof DelayedPayoutTxSignatureResponse) {
|
||||
handle((DelayedPayoutTxSignatureResponse) message, peer);
|
||||
} else if (message instanceof ShareBuyerPaymentAccountMessage) {
|
||||
|
Loading…
Reference in New Issue
Block a user