Skip to content

Commit

Permalink
fix(kafka-inbound): log the exception when kafka throw on start (#3841)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathias-vandaele authored Jan 10, 2025
1 parent b21c0ac commit e175ed5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void startConsumer() {
consume();
return null;
} catch (Exception ex) {
LOG.error("Consumer loop failure, retry pending: {}", ex.getMessage());
LOG.error("Consumer loop failure, retry pending: {}", ex.getMessage(), ex);
try {
consumer.close();
} catch (Exception e) {
Expand Down

0 comments on commit e175ed5

Please sign in to comment.