This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 9ebeb11 CAMEL-15303 - Reduce log level for autodiscovered ObjectMapper 9ebeb11 is described below commit 9ebeb11b5c5c8340255aa468247d16a1af1571d3 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Tue Jul 28 08:54:26 2020 +0200 CAMEL-15303 - Reduce log level for autodiscovered ObjectMapper --- .../main/java/org/apache/camel/component/jackson/JacksonDataFormat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/JacksonDataFormat.java b/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/JacksonDataFormat.java index 9503c44..dabdee8 100644 --- a/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/JacksonDataFormat.java +++ b/components/camel-jackson/src/main/java/org/apache/camel/component/jackson/JacksonDataFormat.java @@ -617,7 +617,7 @@ public class JacksonDataFormat extends ServiceSupport implements DataFormat, Dat objectMapper.setTimeZone(timezone); } } else { - LOG.warn("The objectMapper was already found in the registry, no customizations will be applied"); + LOG.info("The objectMapper was already found in the registry, no customizations will be applied"); } }