Call trace in java

前端 未结 8 2182
野趣味
野趣味 2020-12-05 11:38

Is there a way to output a call trace for a particular thread in java?

I do not want a stack trace. I would like a sequence of calls on each object for tracing.

8条回答
  •  甜味超标
    2020-12-05 11:51

    If you want to trace the execution of your Java code you can use a tool called InTrace.

    NOTE: InTrace is a free and open source tool which I have written.

提交回复
热议问题