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 <[email protected]> Authored: Fri Apr 29 15:49:02 2016 +0200 Committer: Daniel Kulp <[email protected]> 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";
