log
This commit is contained in:
parent
b6b1358131
commit
69b05dd1d1
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user