bbejeck commented on code in PR #16509: URL: https://github.com/apache/kafka/pull/16509#discussion_r1672769086
########## streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java: ########## @@ -834,6 +834,10 @@ public class StreamsConfig extends AbstractConfig { private static final String TASK_ASSIGNOR_CLASS_DOC = "A task assignor class or class name implementing the <code>" + TaskAssignor.class.getName() + "</code> interface. Defaults to the <code>HighAvailabilityTaskAssignor</code> class."; + public static final String LOG_SUMMARY_INTERVAL_MS_CONFIG = "log.summary.interval.ms"; + private static final String LOG_SUMMARY_INTERVAL_MS_DOC = "The configure control the output interval of summary information.\n" + + "if the configuration greater or equal to 0, summary log will be output according to the set time interval;\n" + + "If the configuration item value is less than 0, summary output will be disabled."; Review Comment: ```suggestion private static final String LOG_SUMMARY_INTERVAL_MS_DOC = "This configuration controls the output interval for summary information.\n" + "if greater than or equal to 0, the summary log will be output according to the set time interval;\n" + "If less than 0, summary output is disabled."; ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org