moved index called to debug
This commit is contained in:
parent
b5ec62be68
commit
b35cbb7fd8
|
@ -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");
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue