You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by re...@apache.org on 2016/05/01 21:36:42 UTC

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

Branch: refs/heads/master-jaxrs-2.1
Commit: 5c0c7df629f628fe5e76458e99a2105f6c55ddee
Parents: a752ca6
Author: Christian Schneider <ch...@die-schneider.net>
Authored: Fri Apr 29 15:49:02 2016 +0200
Committer: Christian Schneider <ch...@die-schneider.net>
Committed: Fri Apr 29 15:49:23 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/5c0c7df6/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";