diff --git a/config/dev/log4j2.xml b/config/dev/log4j2.xml index 820d5d73f1..9001096dbc 100644 --- a/config/dev/log4j2.xml +++ b/config/dev/log4j2.xml @@ -57,5 +57,8 @@ + + 
 + \ No newline at end of file diff --git a/core/src/main/kotlin/net/corda/flows/NotaryFlow.kt b/core/src/main/kotlin/net/corda/flows/NotaryFlow.kt index 18014d3d82..d48f785525 100644 --- a/core/src/main/kotlin/net/corda/flows/NotaryFlow.kt +++ b/core/src/main/kotlin/net/corda/flows/NotaryFlow.kt @@ -134,6 +134,7 @@ object NotaryFlow { } if (conflicts.isNotEmpty()) { // TODO: Create a new UniquenessException that only contains the conflicts filtered above. + logger.warn("Notary conflicts for $txId: $conflicts") throw notaryException(txId, e) } } diff --git a/node/src/main/kotlin/net/corda/node/services/messaging/ArtemisMessagingServer.kt b/node/src/main/kotlin/net/corda/node/services/messaging/ArtemisMessagingServer.kt index 2fbd254598..2a414374ea 100644 --- a/node/src/main/kotlin/net/corda/node/services/messaging/ArtemisMessagingServer.kt +++ b/node/src/main/kotlin/net/corda/node/services/messaging/ArtemisMessagingServer.kt @@ -576,7 +576,7 @@ class NodeLoginModule : LoginModule { val password = String(passwordCallback.password ?: throw FailedLoginException("Password not provided")) val certificates = certificateCallback.certificates - log.info("Processing login for $username") + log.debug { "Processing login for $username" } try { val validatedUser = when (determineUserRole(certificates, username)) {