You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2009/09/03 10:52:48 UTC

svn commit: r810826 - /tuscany/java/sca/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedEndpointRegistry.java

Author: antelder
Date: Thu Sep  3 08:52:48 2009
New Revision: 810826

URL: http://svn.apache.org/viewvc?rev=810826&view=rev
Log:
Change a couple more log messages to fine so as to not clutter up the console output

Modified:
    tuscany/java/sca/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedEndpointRegistry.java

Modified: tuscany/java/sca/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedEndpointRegistry.java
URL: http://svn.apache.org/viewvc/tuscany/java/sca/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedEndpointRegistry.java?rev=810826&r1=810825&r2=810826&view=diff
==============================================================================
--- tuscany/java/sca/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedEndpointRegistry.java (original)
+++ tuscany/java/sca/modules/endpoint-tribes/src/main/java/org/apache/tuscany/sca/endpoint/tribes/ReplicatedEndpointRegistry.java Thu Sep  3 08:52:48 2009
@@ -160,7 +160,7 @@
 
     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 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 @@
                     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 void removeEndpointReference(EndpointReference endpointReference) {
         endpointreferences.remove(endpointReference);
-        logger.info("Remove endpoint reference - " + endpointReference);
+        logger.fine("Remove endpoint reference - " + endpointReference);
     }
 
     public void removeListener(EndpointListener listener) {