Merge pull request #7539 from corda/colljos/ledger_recovery_tweaks3

ENT-10100 Ledger Recovery: set verboseLogging to false by default.
This commit is contained in:
Adel El-Beik 2023-10-19 12:11:21 +01:00 committed by GitHub
commit 7556b9a432
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -36,7 +36,7 @@ data class LedgerRecoveryParameters(
val useAllNetworkNodes: Boolean = false,
val dryRun: Boolean = false,
val useTimeWindowNarrowing: Boolean = true,
val verboseLogging: Boolean = true,
val verboseLogging: Boolean = false,
val recoveryBatchSize: Int = 1000
)

View File

@ -94,6 +94,10 @@ data class ReceiverDistributionRecord(
) : DistributionRecord() {
override val id: SecureHash
get() = this.txId
override fun toString(): String {
return "txId: $txId, peerPartyId: $peerPartyId, timestamp: $timestamp, timestampDiscriminator: $timestampDiscriminator, receiverStatesToRecord: $receiverStatesToRecord"
}
}
@CordaSerializable