log
This commit is contained in:
parent
b6b1358131
commit
69b05dd1d1
@ -30,6 +30,9 @@ public class CommitTrxResponder implements ResponderFlow {
|
||||
@Suspendable
|
||||
@Override
|
||||
public void call(FlowSession session) {
|
||||
log.info("_______ CommitTrxResponder Session: " + session);
|
||||
log.info("_______ CommitTrxResponder, myName: " + memberLookup.myInfo().getName());
|
||||
|
||||
UtxoTransactionValidator txValidator = trxToValidate -> {
|
||||
try {
|
||||
checkParticipants(session, trxToValidate);
|
||||
@ -53,6 +56,9 @@ public class CommitTrxResponder implements ResponderFlow {
|
||||
// Log Corda's specific message about finality validation failure
|
||||
log.warn(e.getMessage());
|
||||
}
|
||||
catch (Throwable t) {
|
||||
log.info("_______ CommitTrxResponder: bad exception", t);
|
||||
}
|
||||
}
|
||||
|
||||
@Suspendable
|
||||
|
Loading…
Reference in New Issue
Block a user