mirror of
https://github.com/corda/corda.git
synced 2024-12-20 21:43:14 +00:00
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:
commit
7556b9a432
@ -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
|
||||
)
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user