This commit is contained in:
djmil 2023-11-28 17:27:14 +01:00
parent d12fcee5cc
commit c8e6df5ad9
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
trust.store=classpath:keystore/truststore.p12 trust.store=classpath:keystore/truststore.p12
trust.store.password=test123 trust.store.password=test123
corda.host=https://localhost corda.host=https://192.168.10.8
corda.port=8888 corda.port=8888
corda.root.login=admin corda.root.login=admin
corda.root.passw=admin corda.root.passw=admin

View File

@ -30,8 +30,8 @@ public class CommitTrxResponder implements ResponderFlow {
@Suspendable @Suspendable
@Override @Override
public void call(FlowSession session) { public void call(FlowSession session) {
log.debug("_______ CommitTrxResponder Session: " + session); log.info("_______ CommitTrxResponder Session: " + session);
log.debug("_______ CommitTrxResponder, myName: " + memberLookup.myInfo().getName()); log.info("_______ CommitTrxResponder, myName: " + memberLookup.myInfo().getName());
UtxoTransactionValidator txValidator = trxToValidate -> { UtxoTransactionValidator txValidator = trxToValidate -> {
try { try {
@ -56,7 +56,7 @@ public class CommitTrxResponder implements ResponderFlow {
log.warn(e.getMessage()); log.warn(e.getMessage());
} }
catch (Throwable t) { catch (Throwable t) {
log.debug("_______ CommitTrxResponder: bad exception", t); log.info("_______ CommitTrxResponder: bad exception", t);
} }
} }