Skip to content

Commit

Permalink
Merge pull request #981 from mrjoel/mrjoel-loguseraccess
Browse files Browse the repository at this point in the history
Log username with access logging
  • Loading branch information
gitblit committed Dec 10, 2015
2 parents 63e4d96 + c71fe24 commit 280c0c0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ public void doFilter(final ServletRequest request, final ServletResponse respons
// authenticated request permitted.
// pass processing to the restricted servlet.
newSession(authenticatedRequest, httpResponse);
logger.info(MessageFormat.format("ARF: {0} ({1}) authenticated", fullUrl,
HttpServletResponse.SC_CONTINUE));
logger.info(MessageFormat.format("ARF: authenticated {0} to {1} ({2})", user.username,
fullUrl, HttpServletResponse.SC_CONTINUE));
chain.doFilter(authenticatedRequest, httpResponse);
return;
}
Expand Down

0 comments on commit 280c0c0

Please sign in to comment.