log.info
This commit is contained in:
parent
d12fcee5cc
commit
c8e6df5ad9
@ -2,7 +2,7 @@
|
||||
trust.store=classpath:keystore/truststore.p12
|
||||
trust.store.password=test123
|
||||
|
||||
corda.host=https://localhost
|
||||
corda.host=https://192.168.10.8
|
||||
corda.port=8888
|
||||
corda.root.login=admin
|
||||
corda.root.passw=admin
|
||||
|
@ -30,8 +30,8 @@ public class CommitTrxResponder implements ResponderFlow {
|
||||
@Suspendable
|
||||
@Override
|
||||
public void call(FlowSession session) {
|
||||
log.debug("_______ CommitTrxResponder Session: " + session);
|
||||
log.debug("_______ CommitTrxResponder, myName: " + memberLookup.myInfo().getName());
|
||||
log.info("_______ CommitTrxResponder Session: " + session);
|
||||
log.info("_______ CommitTrxResponder, myName: " + memberLookup.myInfo().getName());
|
||||
|
||||
UtxoTransactionValidator txValidator = trxToValidate -> {
|
||||
try {
|
||||
@ -56,7 +56,7 @@ public class CommitTrxResponder implements ResponderFlow {
|
||||
log.warn(e.getMessage());
|
||||
}
|
||||
catch (Throwable t) {
|
||||
log.debug("_______ CommitTrxResponder: bad exception", t);
|
||||
log.info("_______ CommitTrxResponder: bad exception", t);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user