Class ThreadTracker

java.lang.Object
org.apache.activemq.util.ThreadTracker

public class ThreadTracker extends Object
Debugging tool to track entry points through code, useful to see runtime call paths To use, add to a method as follows: public void someMethod() { ThreadTracker.track("someMethod"); ... } and at some stage call result to get a LOG output of the callers with an associated call count
  • Constructor Details

    • ThreadTracker

      public ThreadTracker()
  • Method Details

    • track

      public static void track(String name)
      track the stack trace of callers
      Parameters:
      name - the method being tracked
    • result

      public static void result()
      output the result of stack trace capture to the log