Skip to content

Commit 7a53b01

Browse files
authored
Add properties to ContainerProperties.toString
1 parent 4ce75ee commit 7a53b01

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

spring-kafka/src/main/java/org/springframework/kafka/listener/ContainerProperties.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1059,6 +1059,7 @@ public String toString() {
10591059
+ "\n ackMode=" + this.ackMode
10601060
+ "\n ackCount=" + this.ackCount
10611061
+ "\n ackTime=" + this.ackTime
1062+
+ "\n consumerStartTimeout=" + this.consumerStartTimeout
10621063
+ "\n messageListener=" + this.messageListener
10631064
+ (this.listenerTaskExecutor != null
10641065
? "\n listenerTaskExecutor=" + this.listenerTaskExecutor
@@ -1074,16 +1075,21 @@ public String toString() {
10741075
+ "\n monitorInterval=" + this.monitorInterval
10751076
+ (this.scheduler != null ? "\n scheduler=" + this.scheduler : "")
10761077
+ "\n noPollThreshold=" + this.noPollThreshold
1078+
+ "\n pauseImmediate=" + this.pauseImmediate
10771079
+ "\n pollTimeoutWhilePaused=" + this.pollTimeoutWhilePaused
10781080
+ "\n subBatchPerPartition=" + this.subBatchPerPartition
10791081
+ "\n assignmentCommitOption=" + this.assignmentCommitOption
10801082
+ "\n deliveryAttemptHeader=" + this.deliveryAttemptHeader
1083+
+ "\n batchRecoverAfterRollback=" + this.batchRecoverAfterRollback
10811084
+ "\n eosMode=" + this.eosMode
10821085
+ "\n transactionDefinition=" + this.transactionDefinition
10831086
+ "\n stopContainerWhenFenced=" + this.stopContainerWhenFenced
10841087
+ "\n stopImmediate=" + this.stopImmediate
10851088
+ "\n asyncAcks=" + this.asyncAcks
1089+
+ "\n logContainerConfig=" + this.logContainerConfig
1090+
+ "\n missingTopicsFatal=" + this.missingTopicsFatal
10861091
+ "\n idleBeforeDataMultiplier=" + this.idleBeforeDataMultiplier
1092+
+ "\n idleBetweenPolls=" + this.idleBetweenPolls
10871093
+ "\n micrometerEnabled=" + this.micrometerEnabled
10881094
+ "\n observationEnabled=" + this.observationEnabled
10891095
+ (this.observationConvention != null

0 commit comments

Comments
 (0)