Skip to content

Commit

Permalink
[revision]47dc5748
Browse files Browse the repository at this point in the history
  • Loading branch information
A.Zamanzade committed Mar 16, 2024
1 parent 47dc574 commit f08d838
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import jakarta.servlet.http.HttpServletResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;
import org.springframework.web.util.ContentCachingResponseWrapper;

Expand All @@ -22,7 +23,7 @@
* @author M.khoshnevisan
* @since 4/21/2021
*/
@Order(30)
@Order(Ordered.HIGHEST_PRECEDENCE + 1)
public class HttpLoggingFilter extends OncePerRequestFilterBase {

private static final Logger LOGGER = LoggerFactory.getLogger(HttpLoggingFilter.class);
Expand Down

0 comments on commit f08d838

Please sign in to comment.