This commit is contained in:
djmil 2023-11-28 17:38:38 +01:00
parent b6b1358131
commit 69b05dd1d1

View File

@ -30,6 +30,9 @@ public class CommitTrxResponder implements ResponderFlow {
@Suspendable @Suspendable
@Override @Override
public void call(FlowSession session) { public void call(FlowSession session) {
log.info("_______ CommitTrxResponder Session: " + session);
log.info("_______ CommitTrxResponder, myName: " + memberLookup.myInfo().getName());
UtxoTransactionValidator txValidator = trxToValidate -> { UtxoTransactionValidator txValidator = trxToValidate -> {
try { try {
checkParticipants(session, trxToValidate); checkParticipants(session, trxToValidate);
@ -53,6 +56,9 @@ public class CommitTrxResponder implements ResponderFlow {
// Log Corda's specific message about finality validation failure // Log Corda's specific message about finality validation failure
log.warn(e.getMessage()); log.warn(e.getMessage());
} }
catch (Throwable t) {
log.info("_______ CommitTrxResponder: bad exception", t);
}
} }
@Suspendable @Suspendable