Added trace info for anonymous access in BasicAuthenticationFilter.java.

This commit is contained in:
Clemens Rabe
2013-10-01 08:09:48 +02:00
parent 1b09dc4d56
commit 1faa748c3a

View File

@@ -168,8 +168,12 @@ public class BasicAuthenticationFilter extends HttpFilter
else if ((configuration != null)
&& configuration.isAnonymousAccessEnabled())
{
user = SCMContext.ANONYMOUS;
if (logger.isTraceEnabled())
{
logger.trace("anonymous access granted");
}
user = SCMContext.ANONYMOUS;
}
if (user == null)