From 280e6877b5657c413bdfe0538d9ae4f1c82b711d Mon Sep 17 00:00:00 2001 From: Roberto Cirillo Date: Thu, 16 Feb 2023 16:40:13 +0100 Subject: [PATCH] change print log level --- .../icproxy/resources/ServiceEndpointResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/gcube/informationsystem/icproxy/resources/ServiceEndpointResource.java b/src/main/java/org/gcube/informationsystem/icproxy/resources/ServiceEndpointResource.java index 0e6bc88..76944d7 100644 --- a/src/main/java/org/gcube/informationsystem/icproxy/resources/ServiceEndpointResource.java +++ b/src/main/java/org/gcube/informationsystem/icproxy/resources/ServiceEndpointResource.java @@ -88,7 +88,7 @@ public class ServiceEndpointResource { @Produces(MediaType.APPLICATION_XML) @Consumes({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON}) public ServiceEndpoint create(ServiceEndpoint resourceProfile) { - log.info("Try to create new serviceEndpoint profile {} in {}",resourceProfile, ScopeProvider.instance.get()); + log.debug("Try to create new serviceEndpoint profile {} in {}",resourceProfile, ScopeProvider.instance.get()); if (Objects.nonNull(resourceProfile) && isRoleEnabled()){ // ServiceEndpoint newResource= new ServiceEndpoint(); // ServiceEndpoint.Profile profile=newResource.newProfile().category(resourceProfile.getCategory()).name(resourceProfile.getName());