change print log level

This commit is contained in:
Roberto Cirillo 2023-02-16 16:40:13 +01:00
parent ee1560cce3
commit 280e6877b5
1 changed files with 1 additions and 1 deletions

View File

@ -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());