Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public Map<String, Properties> allTopicConfigs() {
try {
topicNames = _adminClient.listTopics().names().get();
} catch (InterruptedException | ExecutionException e) {
LOG.warn("Unable to obtain list of all topic names from the Kafka Cluster");
LOG.warn("Unable to obtain list of all topic names from the Kafka Cluster: " + e);
}

if (topicNames == null) {
Expand Down Expand Up @@ -171,7 +171,7 @@ public void configure(Map<String, ?> configs) {
try {
clusterConfigs = describeClusterConfigs(_adminClient, DESCRIBE_CLUSTER_CONFIGS_TIMEOUT);
} catch (InterruptedException | ExecutionException e) {
throw new RuntimeException("Failed to describe Kafka cluster configs.");
throw new RuntimeException("Failed to describe Kafka cluster configs: " + e);
}

if (clusterConfigs != null) {
Expand Down