moved index called to debug

This commit is contained in:
Francesco Mangiacrapa 2024-04-22 10:24:22 +02:00
parent b5ec62be68
commit b35cbb7fd8
2 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ public class RequestHandler implements ContainerRequestFilter, ContainerResponse
@Override
public void filter(ContainerRequestContext requestContext, ContainerResponseContext responseContext)
throws IOException {
log.info(RequestHandler.class.getSimpleName() + " Response called");
log.debug(RequestHandler.class.getSimpleName() + " Response called");
SecurityTokenProvider.instance.reset();
ScopeProvider.instance.reset();
log.debug("Token and Scope Provider reset called");

View File

@ -46,7 +46,7 @@ public class UriResolverIndex {
String indexFile = "/WEB-INF/jsp/index.jsp";
try {
logger.info(UriResolverIndex.class.getSimpleName() + " called");
logger.debug(UriResolverIndex.class.getSimpleName() + " called");
String realPath = req.getServletContext().getRealPath(indexFile);
return new FileInputStream(new File(realPath));
} catch (Exception e) {