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 0acf3b86322f camel-aws2-cw: Reduce log verbosity generated from
Cw2Producer (#24024)
0acf3b86322f is described below
commit 0acf3b86322f0bfd2c2ab9dbb7c3e6249596482a
Author: James Netherton <[email protected]>
AuthorDate: Mon Jun 15 11:49:31 2026 +0100
camel-aws2-cw: Reduce log verbosity generated from Cw2Producer (#24024)
---
.../src/main/java/org/apache/camel/component/aws2/cw/Cw2Producer.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-aws/camel-aws2-cw/src/main/java/org/apache/camel/component/aws2/cw/Cw2Producer.java
b/components/camel-aws/camel-aws2-cw/src/main/java/org/apache/camel/component/aws2/cw/Cw2Producer.java
index 77e14c29008a..2f426eae91d2 100644
---
a/components/camel-aws/camel-aws2-cw/src/main/java/org/apache/camel/component/aws2/cw/Cw2Producer.java
+++
b/components/camel-aws/camel-aws2-cw/src/main/java/org/apache/camel/component/aws2/cw/Cw2Producer.java
@@ -102,7 +102,7 @@ public class Cw2Producer extends DefaultProducer {
builder.metricData(metricData).namespace(determineNameSpace(exchange));
PutMetricDataRequest request = builder.build();
- LOG.info("Sending request [{}] from exchange [{}]...", request,
exchange);
+ LOG.debug("Sending request [{}] from exchange [{}]...", request,
exchange);
client.putMetricData(request);
}