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 2013/10/25 15:47:31 UTC

[2/3] git commit: CAMEL-6904: Reduce logging noise for OSGi runtime

CAMEL-6904: Reduce logging noise for OSGi runtime


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/f2e85bb7
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/f2e85bb7
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/f2e85bb7

Branch: refs/heads/camel-2.11.x
Commit: f2e85bb7da1350e0fe8bf7ce591d099694275eb0
Parents: 86fe488
Author: Claus Ibsen <da...@apache.org>
Authored: Fri Oct 25 15:46:28 2013 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Fri Oct 25 15:47:33 2013 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/camel/impl/osgi/Activator.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/f2e85bb7/camel-core/src/main/java/org/apache/camel/impl/osgi/Activator.java
----------------------------------------------------------------------
diff --git a/camel-core/src/main/java/org/apache/camel/impl/osgi/Activator.java b/camel-core/src/main/java/org/apache/camel/impl/osgi/Activator.java
index 79799a0..aec58e8 100644
--- a/camel-core/src/main/java/org/apache/camel/impl/osgi/Activator.java
+++ b/camel-core/src/main/java/org/apache/camel/impl/osgi/Activator.java
@@ -349,7 +349,7 @@ public class Activator implements BundleActivator, BundleTrackerCustomizer {
                 }
 
                 // load the classes into type converter registry
-                LOG.info("Found {} @Converter classes to load", classes.size());
+                LOG.debug("Found {} @Converter classes to load", classes.size());
                 for (Class<?> type : classes) {
                     if (LOG.isTraceEnabled()) {
                         LOG.trace("Loading converter class: {}", ObjectHelper.name(type));
@@ -386,7 +386,7 @@ public class Activator implements BundleActivator, BundleTrackerCustomizer {
                 return null;
             }
             URL url = bundle.getEntry(path);
-            LOG.debug("The entry {}'s url is {}", name, url);
+            LOG.trace("The entry {}'s url is {}", name, url);
             return createInstance(name, url, context.getInjector());
         }