修复bug

This commit is contained in:
2026-04-25 05:48:12 +08:00
parent 75dc1429cf
commit 4eff975b8e
2 changed files with 0 additions and 2 deletions

View File

@@ -49,7 +49,6 @@ public class CommonFilter extends BaseFilter implements Ordered, BaseParams {
filterChain.doFilter(request, response); filterChain.doFilter(request, response);
} catch (IOException | ServletException e) { } catch (IOException | ServletException e) {
log.error("添加通用ScopedValue异常", e); log.error("添加通用ScopedValue异常", e);
HttpServletUtils.respWriter(response, JSONObject.from(new Result<>(ResultType.INTERNAL_SERVER_ERROR, null)));
} }
}); });
} }

View File

@@ -71,7 +71,6 @@ public class LogTrackFilter extends BaseFilter implements Ordered, BaseParams {
filterChain.doFilter(request, response); filterChain.doFilter(request, response);
} catch (IOException | ServletException e) { } catch (IOException | ServletException e) {
log.error("添加日志追踪ScopedValue异常", e); log.error("添加日志追踪ScopedValue异常", e);
HttpServletUtils.respWriter(response, JSONObject.from(new Result<>(ResultType.INTERNAL_SERVER_ERROR, null)));
} }
}); });
} }