Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
linyimin0812 committed Sep 10, 2023
1 parent 31bce75 commit 5c46441
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ public void run() {

List<StackTraceElement> elements = Arrays.asList(traces);

if (elements.stream().anyMatch(element -> element.getClassName().startsWith("io.github.linyimin0812.profiler"))) {
continue;
}
// if (elements.stream().anyMatch(element -> element.getClassName().startsWith("io.github.linyimin0812.profiler"))) {
// continue;
// }

Collections.reverse(elements);
String trace = elements.stream().map(element -> element.getClassName() + "." + element.getMethodName()).collect(Collectors.joining(";"));
Expand Down

0 comments on commit 5c46441

Please sign in to comment.