Tone down logging noise
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/f1580769 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/f1580769 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/f1580769 Branch: refs/heads/master Commit: f1580769762eecc80948eb6aec7beec50405b2a1 Parents: 46a1aab Author: Claus Ibsen <davscl...@apache.org> Authored: Tue Mar 8 09:29:24 2016 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Tue Mar 8 09:29:24 2016 +0100 ---------------------------------------------------------------------- .../java/org/apache/camel/converter/jaxb/JaxbDataFormat.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/f1580769/components/camel-jaxb/src/main/java/org/apache/camel/converter/jaxb/JaxbDataFormat.java ---------------------------------------------------------------------- diff --git a/components/camel-jaxb/src/main/java/org/apache/camel/converter/jaxb/JaxbDataFormat.java b/components/camel-jaxb/src/main/java/org/apache/camel/converter/jaxb/JaxbDataFormat.java index d6373a9..95389ee 100644 --- a/components/camel-jaxb/src/main/java/org/apache/camel/converter/jaxb/JaxbDataFormat.java +++ b/components/camel-jaxb/src/main/java/org/apache/camel/converter/jaxb/JaxbDataFormat.java @@ -443,14 +443,14 @@ public class JaxbDataFormat extends ServiceSupport implements DataFormat, DataFo // load the the class which has been JAXB annotated ClassLoader cl = camelContext.getApplicationContextClassLoader(); if (cl != null) { - LOG.info("Creating JAXBContext with contextPath: " + contextPath + " and ApplicationContextClassLoader: " + cl); + LOG.debug("Creating JAXBContext with contextPath: " + contextPath + " and ApplicationContextClassLoader: " + cl); return JAXBContext.newInstance(contextPath, cl); } else { - LOG.info("Creating JAXBContext with contextPath: " + contextPath); + LOG.debug("Creating JAXBContext with contextPath: " + contextPath); return JAXBContext.newInstance(contextPath); } } else { - LOG.info("Creating JAXBContext"); + LOG.debug("Creating JAXBContext"); return JAXBContext.newInstance(); } }