You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2018/02/28 15:27:33 UTC

[camel] branch camel-2.19.x updated: CAMEL-12305: IntrospectionSupport - Reduce DEBUG logging level

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-2.19.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-2.19.x by this push:
     new ebb4f91  CAMEL-12305: IntrospectionSupport - Reduce DEBUG logging level
ebb4f91 is described below

commit ebb4f9165de39e3bcb4f6f40a3ed3d2788bd022f
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Feb 28 16:26:08 2018 +0100

    CAMEL-12305: IntrospectionSupport - Reduce DEBUG logging level
---
 .../src/main/java/org/apache/camel/util/IntrospectionSupport.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/camel-core/src/main/java/org/apache/camel/util/IntrospectionSupport.java b/camel-core/src/main/java/org/apache/camel/util/IntrospectionSupport.java
index 185ef3b..2f8a7e0 100644
--- a/camel-core/src/main/java/org/apache/camel/util/IntrospectionSupport.java
+++ b/camel-core/src/main/java/org/apache/camel/util/IntrospectionSupport.java
@@ -566,8 +566,8 @@ public final class IntrospectionSupport {
                         // we may want to set options on classes that has package view visibility, so override the accessible
                         setter.setAccessible(true);
                         setter.invoke(target, ref);
-                        if (LOG.isDebugEnabled()) {
-                            LOG.debug("Configured property: {} on bean: {} with value: {}", new Object[]{name, target, ref});
+                        if (LOG.isTraceEnabled()) {
+                            LOG.trace("Configured property: {} on bean: {} with value: {}", new Object[]{name, target, ref});
                         }
                         return true;
                     } else {
@@ -576,8 +576,8 @@ public final class IntrospectionSupport {
                         // we may want to set options on classes that has package view visibility, so override the accessible
                         setter.setAccessible(true);
                         setter.invoke(target, convertedValue);
-                        if (LOG.isDebugEnabled()) {
-                            LOG.debug("Configured property: {} on bean: {} with value: {}", new Object[]{name, target, ref});
+                        if (LOG.isTraceEnabled()) {
+                            LOG.trace("Configured property: {} on bean: {} with value: {}", new Object[]{name, target, ref});
                         }
                         return true;
                     }

-- 
To stop receiving notification emails like this one, please contact
davsclaus@apache.org.