diff --git a/src/main/java/org/gcube/common/core/publisher/is/legacy/LegacyISPublisher.java b/src/main/java/org/gcube/common/core/publisher/is/legacy/LegacyISPublisher.java index a3bf512..3db1b1f 100644 --- a/src/main/java/org/gcube/common/core/publisher/is/legacy/LegacyISPublisher.java +++ b/src/main/java/org/gcube/common/core/publisher/is/legacy/LegacyISPublisher.java @@ -64,7 +64,6 @@ public class LegacyISPublisher implements Publisher{ logger.info("publishing container in context {}", context); AuthorizedTasks.executeSafely( () -> { try { - logger.info("(inside task)publishing container in context {}", context); registry.getStubs().create(toXml(hostingNode), hostingNode.type().toString()); }catch (Exception e) { logger.error("error publishing container", e); @@ -104,10 +103,8 @@ public class LegacyISPublisher implements Publisher{ logger.info("publishing application in context {}", context); AuthorizedTasks.executeSafely(() -> { try { - logger.info("(inside task)publishing application in context {}", context); String resource = toXml(endpoint); registry.getStubs().create(resource, endpoint.type().toString()); - logger.debug("publisher resource in context {} : {}",context, resource); }catch (Exception e) { logger.error("erro publishing application", e); throw new RuntimeException(e);