From 916e80101067795f54a135c9634b6433d978c663 Mon Sep 17 00:00:00 2001 From: Sungyun Hur Date: Thu, 25 May 2023 04:48:47 +0900 Subject: [PATCH] MINOR: Fix whitespace typo in Connect Config docs (#13752) Reviewers: Mickael Maison , Yash Mayya , Divij Vaidya --- .../java/org/apache/kafka/connect/runtime/ConnectorConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/ConnectorConfig.java b/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/ConnectorConfig.java index 40b7c0a1462..aaf15f4eeb1 100644 --- a/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/ConnectorConfig.java +++ b/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/ConnectorConfig.java @@ -150,7 +150,7 @@ public class ConnectorConfig extends AbstractConfig { public static final String ERRORS_LOG_INCLUDE_MESSAGES_CONFIG = "errors.log.include.messages"; public static final String ERRORS_LOG_INCLUDE_MESSAGES_DISPLAY = "Log Error Details"; public static final boolean ERRORS_LOG_INCLUDE_MESSAGES_DEFAULT = false; - public static final String ERRORS_LOG_INCLUDE_MESSAGES_DOC = "Whether to include in the log the Connect record that resulted in a failure." + + public static final String ERRORS_LOG_INCLUDE_MESSAGES_DOC = "Whether to include in the log the Connect record that resulted in a failure. " + "For sink records, the topic, partition, offset, and timestamp will be logged. " + "For source records, the key and value (and their schemas), all headers, and the timestamp, Kafka topic, Kafka partition, source partition, " + "and source offset will be logged. " +