diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-09-03 08:52:48 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-09-03 08:52:48 +0000 |
commit | 31ded537ca628e18b6c86e09568a0c2caec1671f (patch) | |
tree | 989454ca680fb0c4f2ceba4a4c916cd9c7ccdc7e | |
parent | 228cfc8919340f903c63f5771859819bd23077b9 (diff) |
Change a couple more log messages to fine so as to not clutter up the console output
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@810826 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | java/sca/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedEndpointRegistry.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java/sca/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedEndpointRegistry.java b/java/sca/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedEndpointRegistry.java index 9dab6e1e4b..c902323d00 100644 --- a/java/sca/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedEndpointRegistry.java +++ b/java/sca/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedEndpointRegistry.java @@ -160,7 +160,7 @@ public class ReplicatedEndpointRegistry implements EndpointRegistry, LifeCycleLi public void addEndpointReference(EndpointReference endpointReference) { endpointreferences.add(endpointReference); - logger.info("Add endpoint reference - " + endpointReference); + logger.fine("Add endpoint reference - " + endpointReference); } public void addListener(EndpointListener listener) { @@ -214,14 +214,14 @@ public class ReplicatedEndpointRegistry implements EndpointRegistry, LifeCycleLi public List<Endpoint> findEndpoint(EndpointReference endpointReference) { List<Endpoint> foundEndpoints = new ArrayList<Endpoint>(); - logger.info("Find endpoint for reference - " + endpointReference); + logger.fine("Find endpoint for reference - " + endpointReference); if (endpointReference.getReference() != null) { Endpoint targetEndpoint = endpointReference.getTargetEndpoint(); for (Object v : map.values()) { Endpoint endpoint = (Endpoint)v; // TODO: implement more complete matching - logger.info("Matching against - " + endpoint); + logger.fine("Matching against - " + endpoint); if (matches(targetEndpoint.getURI(), endpoint.getURI())) { MapEntry entry = map.getInternal(endpoint.getURI()); if (!isLocal(entry)) { @@ -231,7 +231,7 @@ public class ReplicatedEndpointRegistry implements EndpointRegistry, LifeCycleLi endpoint.setExtensionPointRegistry(registry); // } foundEndpoints.add(endpoint); - logger.info("Found endpoint with matching service - " + endpoint); + logger.fine("Found endpoint with matching service - " + endpoint); } // else the service name doesn't match } @@ -270,7 +270,7 @@ public class ReplicatedEndpointRegistry implements EndpointRegistry, LifeCycleLi public void removeEndpointReference(EndpointReference endpointReference) { endpointreferences.remove(endpointReference); - logger.info("Remove endpoint reference - " + endpointReference); + logger.fine("Remove endpoint reference - " + endpointReference); } public void removeListener(EndpointListener listener) { |