removed some logs
This commit is contained in:
parent
7869e0d17d
commit
45e60c8b46
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue