Skip to content

Commit

Permalink
feat(api): support recording slow query log
Browse files Browse the repository at this point in the history
  • Loading branch information
SunnyBoy-WYH committed Oct 16, 2023
1 parent 7a7bd88 commit d3d91b1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public class SlowQueryLog {
public SlowQueryLog(Long executeTime, Long startTime, String rawQuery, String method, Long threshold,
String path) {
this.executeTime = executeTime;
this.startTime = startTime;
this.rawQuery = rawQuery;
this.method = method;
this.threshold = threshold;
Expand Down

0 comments on commit d3d91b1

Please sign in to comment.