just removed a log
This commit is contained in:
parent
da4789b56b
commit
635efcb599
|
@ -17,16 +17,11 @@ public abstract class BaseClient {
|
|||
ServiceDiscoverer discoverer = new ServiceDiscoverer();
|
||||
serviceEndpoint = discoverer.getEntryPoint();
|
||||
logger.debug("Discovering service...");
|
||||
|
||||
logger.debug(" \n\n\n *** I found " + serviceEndpoint);
|
||||
|
||||
serviceEndpoint = serviceEndpoint.endsWith("/") ? serviceEndpoint + subPath :
|
||||
serviceEndpoint + "/" + subPath;
|
||||
logger.info("\n\n ABZ Discovered service " + serviceEndpoint);
|
||||
serviceEndpoint = serviceEndpoint.endsWith("/") ? serviceEndpoint + subPath : serviceEndpoint + "/" + subPath;
|
||||
logger.info("Discovered service " + serviceEndpoint);
|
||||
}
|
||||
|
||||
public String getServiceEndpoint() {
|
||||
logger.info("\n\n RETURNING Discovered service " + serviceEndpoint);
|
||||
return serviceEndpoint;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue