Skip to content

Commit

Permalink
Add properties to ContainerProperties.toString
Browse files Browse the repository at this point in the history
  • Loading branch information
Wzy19930507 authored Feb 21, 2024
1 parent 4ce75ee commit 7a53b01
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1059,6 +1059,7 @@ public String toString() {
+ "\n ackMode=" + this.ackMode
+ "\n ackCount=" + this.ackCount
+ "\n ackTime=" + this.ackTime
+ "\n consumerStartTimeout=" + this.consumerStartTimeout
+ "\n messageListener=" + this.messageListener
+ (this.listenerTaskExecutor != null
? "\n listenerTaskExecutor=" + this.listenerTaskExecutor
Expand All @@ -1074,16 +1075,21 @@ public String toString() {
+ "\n monitorInterval=" + this.monitorInterval
+ (this.scheduler != null ? "\n scheduler=" + this.scheduler : "")
+ "\n noPollThreshold=" + this.noPollThreshold
+ "\n pauseImmediate=" + this.pauseImmediate
+ "\n pollTimeoutWhilePaused=" + this.pollTimeoutWhilePaused
+ "\n subBatchPerPartition=" + this.subBatchPerPartition
+ "\n assignmentCommitOption=" + this.assignmentCommitOption
+ "\n deliveryAttemptHeader=" + this.deliveryAttemptHeader
+ "\n batchRecoverAfterRollback=" + this.batchRecoverAfterRollback
+ "\n eosMode=" + this.eosMode
+ "\n transactionDefinition=" + this.transactionDefinition
+ "\n stopContainerWhenFenced=" + this.stopContainerWhenFenced
+ "\n stopImmediate=" + this.stopImmediate
+ "\n asyncAcks=" + this.asyncAcks
+ "\n logContainerConfig=" + this.logContainerConfig
+ "\n missingTopicsFatal=" + this.missingTopicsFatal
+ "\n idleBeforeDataMultiplier=" + this.idleBeforeDataMultiplier
+ "\n idleBetweenPolls=" + this.idleBetweenPolls
+ "\n micrometerEnabled=" + this.micrometerEnabled
+ "\n observationEnabled=" + this.observationEnabled
+ (this.observationConvention != null
Expand Down

0 comments on commit 7a53b01

Please sign in to comment.