showuon commented on a change in pull request #9149: URL: https://github.com/apache/kafka/pull/9149#discussion_r491916604
########## File path: connect/runtime/src/main/java/org/apache/kafka/connect/runtime/WorkerSourceTask.java ########## @@ -409,6 +410,9 @@ private boolean sendRecords() { // RegexRouter) topic creation can not be batched for multiple topics private void maybeCreateTopic(String topic) { if (!topicCreation.isTopicCreationRequired(topic)) { + log.trace("The topic creation setting is disabled or the topic name {} is already in the topic cache." + Review comment: @kkonstantine , thanks for the comment, what I'm trying to do here is to let the user know if the creating topic pending for a long time without response (default timeout is 30 or 60 secs), we let user know earlier that this situation might happen, and it could because the `auto.create.topics.enable` 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org