Skip to content

Commit

Permalink
Update ThreadPool.java
Browse files Browse the repository at this point in the history
  • Loading branch information
youfanx committed Aug 5, 2024
1 parent 4ebab8f commit 1c2e497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rxlib/src/main/java/org/rx/core/ThreadPool.java
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public T call() {
throw e;
} finally {
Thread t = Thread.currentThread();
TraceHandler.INSTANCE.saveMethodTrace(t, caller != null ? caller[0] : ThreadPool.class, fn.getClass().getSimpleName() + Linq.from(caller).toJoinString(Constants.STACK_TRACE_FLAG), id == null ? null : new Object[]{id},
TraceHandler.INSTANCE.saveMethodTrace(t, caller != null ? caller[0] : ThreadPool.class, fn.getClass().getSimpleName() + Linq.from(caller).select(Class::getName).toJoinString(Constants.STACK_TRACE_FLAG), id == null ? null : new Object[]{id},
r, ex, System.nanoTime() - s);
}
return r;
Expand Down

0 comments on commit 1c2e497

Please sign in to comment.