Skip to content
Snippets Groups Projects
Commit a96e06cd authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Remove debug output

parent 656e1fea
No related branches found
No related tags found
No related merge requests found
......@@ -65,10 +65,8 @@ public class AuthenticationFilter implements Filter {
*/
if (isUnprivilegedURL(httpRequest)) {
chain.doFilter(request, response);
System.out.println("Uprivileged URL: " + httpRequest.getRequestURI());
// return;
} else {
System.out.println("Privileged URL: " + httpRequest.getRequestURI());
// First: Check for session variable
boolean clientAuthenticated = (httpRequest.getSession().getAttribute("user") != null
&& httpRequest.getSession().getAttribute("user") instanceof VipsLogicUser);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment