This commit is contained in:
lucio 2024-04-05 15:08:23 +02:00
parent ea30e79309
commit 3c2a5db252
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ public class ICClient implements DiscoveryClient<String> {
return splitIntoList(results);
}
catch(MalformedQueryException e) {
throw new DiscoveryException("malformed query "+query.expression(),e);
throw new DiscoveryException("malformed query {} "+query.expression(),e);
}
catch(SOAPFaultException e) {
throw new RuntimeException(JAXWSUtils.remoteCause(e));
@ -78,7 +78,7 @@ public class ICClient implements DiscoveryClient<String> {
//find endpoint address in service map currently in scope
String address = ServiceMap.instance.endpoint(localname);
log.info("connectinfg to "+address);
log.info("connectinfg to {} ",address);
//obtain a JAXWS stub configured for gCube calls
return stubFor(collector).at(URI.create(address));
}