davsclaus commented on code in PR #8883:
URL: https://github.com/apache/camel/pull/8883#discussion_r1045913187


##########
components/camel-kafka/src/main/java/org/apache/camel/processor/resume/kafka/SingleNodeKafkaResumeStrategy.java:
##########
@@ -396,6 +400,8 @@ public void stop() {
             IOHelper.close(producer, "Kafka producer", LOG);
         } catch (InterruptedException e) {
             Thread.currentThread().interrupt();
+        } catch (Exception e) {
+            LOG.error("Error closing the Kafka producer: {} (this error will 
be ignored)", e.getMessage(), e);

Review Comment:
   Should this be WARN like the other



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to