removed some logs

This commit is contained in:
Lucio Lelii 2022-06-29 11:46:27 +02:00
parent 7869e0d17d
commit 45e60c8b46
1 changed files with 0 additions and 3 deletions

View File

@ -64,7 +64,6 @@ public class LegacyISPublisher implements Publisher{
logger.info("publishing container in context {}", context); logger.info("publishing container in context {}", context);
AuthorizedTasks.executeSafely( () -> { AuthorizedTasks.executeSafely( () -> {
try { try {
logger.info("(inside task)publishing container in context {}", context);
registry.getStubs().create(toXml(hostingNode), hostingNode.type().toString()); registry.getStubs().create(toXml(hostingNode), hostingNode.type().toString());
}catch (Exception e) { }catch (Exception e) {
logger.error("error publishing container", e); logger.error("error publishing container", e);
@ -104,10 +103,8 @@ public class LegacyISPublisher implements Publisher{
logger.info("publishing application in context {}", context); logger.info("publishing application in context {}", context);
AuthorizedTasks.executeSafely(() -> { AuthorizedTasks.executeSafely(() -> {
try { try {
logger.info("(inside task)publishing application in context {}", context);
String resource = toXml(endpoint); String resource = toXml(endpoint);
registry.getStubs().create(resource, endpoint.type().toString()); registry.getStubs().create(resource, endpoint.type().toString());
logger.debug("publisher resource in context {} : {}",context, resource);
}catch (Exception e) { }catch (Exception e) {
logger.error("erro publishing application", e); logger.error("erro publishing application", e);
throw new RuntimeException(e); throw new RuntimeException(e);