Skip to content

Commit

Permalink
Update ApiRateLimitFilter.java to remove system.out
Browse files Browse the repository at this point in the history
  • Loading branch information
Camelia-Orcid authored Oct 30, 2024
1 parent 37e33a6 commit 33a2289
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ public class ApiRateLimitFilter extends OncePerRequestFilter {
@Override
protected void doFilterInternal(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, FilterChain filterChain)
throws ServletException, IOException {
System.out.println("!!!!!!!!!!!!!!!!!!!!!!! ApiRateLimitFilter starts, rate limit is : " + enableRateLimiting);
LOG.info("ApiRateLimitFilter starts, rate limit is : " + enableRateLimiting);
if (enableRateLimiting) {
String clientId = orcidSecurityManager.getClientIdFromAPIRequest();
Expand Down

0 comments on commit 33a2289

Please sign in to comment.