You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2016/05/19 03:10:00 UTC

[2/3] cxf git commit: Only log namespacehandler reg on debug level

Only log namespacehandler reg on debug level


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

Branch: refs/heads/3.1.x-fixes
Commit: 43f440bb4705eddaa29907239372205702f32853
Parents: 7b1168e
Author: Christian Schneider <ch...@die-schneider.net>
Authored: Fri Apr 29 15:49:02 2016 +0200
Committer: Daniel Kulp <dk...@apache.org>
Committed: Wed May 18 23:09:19 2016 -0400

----------------------------------------------------------------------
 .../org/apache/cxf/bus/blueprint/NamespaceHandlerRegisterer.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/43f440bb/core/src/main/java/org/apache/cxf/bus/blueprint/NamespaceHandlerRegisterer.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/cxf/bus/blueprint/NamespaceHandlerRegisterer.java b/core/src/main/java/org/apache/cxf/bus/blueprint/NamespaceHandlerRegisterer.java
index 400dfd9..463236f 100644
--- a/core/src/main/java/org/apache/cxf/bus/blueprint/NamespaceHandlerRegisterer.java
+++ b/core/src/main/java/org/apache/cxf/bus/blueprint/NamespaceHandlerRegisterer.java
@@ -41,7 +41,7 @@ public final class NamespaceHandlerRegisterer {
                 Dictionary<String, String> properties = new Hashtable<String, String>();
                 properties.put("osgi.service.blueprint.namespace", namespace);
                 bc.registerService(NamespaceHandler.class.getName(), handler, properties);
-                LOG.info("Registered blueprint namespace handler for " + namespace);
+                LOG.fine("Registered blueprint namespace handler for " + namespace);
             }
         } catch (Throwable e) {
             String msg = "Aries Blueprint packages not available. So namespaces will not be registered";