diff --git a/src/main/java/org/gcube/informationsystem/resourceregistry/resources/EntityManager.java b/src/main/java/org/gcube/informationsystem/resourceregistry/resources/EntityManager.java index af8cf2b..e0fd4e9 100644 --- a/src/main/java/org/gcube/informationsystem/resourceregistry/resources/EntityManager.java +++ b/src/main/java/org/gcube/informationsystem/resourceregistry/resources/EntityManager.java @@ -142,7 +142,7 @@ public class EntityManager { @Path(EntityPath.RESOURCE_PATH_PART + "/{" + ID_PATH_PARAM + "}") public boolean deleteResource(@PathParam(ID_PATH_PARAM) String uuid) throws ResourceNotFoundException, Exception { - logger.trace("requested resource deletion for id {}", uuid); + logger.info("requested resource deletion for id {}", uuid); return entityManager.deleteResource(UUID.fromString(uuid)); }