Skip to content

Commit

Permalink
Fix log message from GroupServlet
Browse files Browse the repository at this point in the history
  • Loading branch information
fmarco76 committed Sep 25, 2024
1 parent 9f04b76 commit 5c1d201
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void addGroup(HttpServletRequest request, HttpServletResponse response) t
@WebAction(method = HttpMethod.GET, paths = {"{}"})
public void getGroup(HttpServletRequest request, HttpServletResponse response) throws Exception {
HttpSession session = request.getSession();
logger.debug("GroupServletBase.addGroup(): session: {}", session.getId());
logger.debug("GroupServletBase.getGroup(): session: {}", session.getId());
String[] pathElement = request.getPathInfo().substring(1).split("/");
String groupId = pathElement[0];
GroupData group = groupServletBase.getGroup(groupId, request.getLocale());
Expand Down

0 comments on commit 5c1d201

Please sign in to comment.