Skip to content

Commit

Permalink
Update TraceHandler.java
Browse files Browse the repository at this point in the history
  • Loading branch information
youfanx committed Aug 2, 2024
1 parent a2c0f0b commit fdf2df7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rxlib/src/main/java/org/rx/exception/TraceHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public List<ExceptionEntity> queryExceptionTraces(Date startTime, Date endTime,

public void saveMethodTrace(Thread t, Class<?> declaringType, String methodName, Object[] parameters,
Object returnValue, Throwable e, long elapsedMicros) {
queue.offer(new Object[]{t, declaringType, methodName, parameters, returnValue, e, elapsedMicros});
queue.offer(new Object[]{t.getName(), declaringType, methodName, parameters, returnValue, e, elapsedMicros});
}

void innerSave(String thread, Class<?> declaringType, String methodName, Object[] parameters,
Expand Down

0 comments on commit fdf2df7

Please sign in to comment.