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 @@ -226,7 +226,8 @@ private void startConsumer() {
log.warn()
.attr("messageId", msg.getMessageId())
.attr("topic", topicName)
.log("Failed to synchronize for");
.exception(ex)
.log("Failed to synchronize metadata event");
return null;
});
} else {
Expand All @@ -237,15 +238,17 @@ private void startConsumer() {
log.warn()
.attr("messageId", msg.getMessageId())
.attr("topic", topicName)
.log("Failed to synchronize for");
.exception(ex)
.log("Failed to synchronize metadata event");
return null;
});
}
} catch (Exception e) {
log.warn()
.attr("messageId", msg.getMessageId())
.attr("topic", topicName)
.log("Failed to synchronize for");
.exception(e)
.log("Failed to synchronize metadata event");
}
});
consumerBuilder.subscribeAsync().thenAccept(consumer -> {
Expand Down
Loading