You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by cs...@apache.org on 2016/07/04 14:59:07 UTC

[2/5] 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/695f567c
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/695f567c
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/695f567c

Branch: refs/heads/origin/3.1.x-fixes
Commit: 695f567c2b3613004941a4a42179b67f74f6565e
Parents: 5d1d478
Author: Christian Schneider <ch...@die-schneider.net>
Authored: Fri Apr 29 15:49:02 2016 +0200
Committer: Christian Schneider <ch...@die-schneider.net>
Committed: Mon May 2 09:26:03 2016 +0200

----------------------------------------------------------------------
 .../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/695f567c/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";