From acd016e1f28828a6108360fcb8dd983d1e1b0f17 Mon Sep 17 00:00:00 2001 From: Roberto Cirillo Date: Fri, 3 Mar 2023 11:57:53 +0100 Subject: [PATCH] fix log --- .../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 2aa2b6a..65fc419 100644 --- a/src/main/java/org/gcube/informationsystem/icproxy/resources/ServiceEndpointResource.java +++ b/src/main/java/org/gcube/informationsystem/icproxy/resources/ServiceEndpointResource.java @@ -202,7 +202,7 @@ public class ServiceEndpointResource { private boolean isRoleEnabled(String role){ boolean isEnabled = false; - log.debug("checking role"); + log.debug("checking role: "+role); String at= AccessTokenProvider.instance.get(); try{ if (ModelUtils.getAccessTokenFrom(at).getRealmAccess().getRoles().contains(role)) {