This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 604bd82178f camel-kudu: Reduce log noise from KuduEndpoint.doStop
(#12914)
604bd82178f is described below
commit 604bd82178fa6173ebe79d12c1d728a59e968265
Author: James Netherton <[email protected]>
AuthorDate: Fri Jan 26 12:27:05 2024 +0000
camel-kudu: Reduce log noise from KuduEndpoint.doStop (#12914)
---
.../src/main/java/org/apache/camel/component/kudu/KuduEndpoint.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduEndpoint.java
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduEndpoint.java
index afa11f9a9fd..d540a8df1da 100644
---
a/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduEndpoint.java
+++
b/components/camel-kudu/src/main/java/org/apache/camel/component/kudu/KuduEndpoint.java
@@ -86,7 +86,7 @@ public class KuduEndpoint extends DefaultEndpoint {
@Override
protected void doStop() throws Exception {
try {
- LOG.info("doStop()");
+ LOG.debug("Shutting down kudu client");
getKuduClient().shutdown();
} catch (Exception e) {
LOG.error("Unable to shutdown kudu client", e);