Skip to content

Commit

Permalink
【优化】增强访问日志,支持是否记录、脱敏、操作信息等功能
Browse files Browse the repository at this point in the history
  • Loading branch information
YunaiV committed Apr 3, 2024
1 parent ec9f983 commit f88c07a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
@Slf4j
public class ApiAccessLogInterceptor implements HandlerInterceptor {

public static String ATTRIBUTE_HANDLER_METHOD = "HANDLER_METHOD";
public static final String ATTRIBUTE_HANDLER_METHOD = "HANDLER_METHOD";

private static String ATTRIBUTE_STOP_WATCH = "ApiAccessLogInterceptor.StopWatch";
private static final String ATTRIBUTE_STOP_WATCH = "ApiAccessLogInterceptor.StopWatch";

@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) {
Expand Down

0 comments on commit f88c07a

Please sign in to comment.