jTracer  1.03
Stack trace visualization tool
static synchronized void org.libcsdbg.jtracer.Registry.debug ( Throwable  err)
static

Output debug text for an exception.

Parameters
[in]errthe exception

Definition at line 398 of file Registry.java.

References org.libcsdbg.jtracer.Registry.test().

Referenced by org.libcsdbg.jtracer.Registry.browse(), org.libcsdbg.jtracer.Registry.loadIcon(), and org.libcsdbg.jtracer.Registry.mail().

399  {
400  Registry conf = Registry.getCurrent();
401  if (conf != null && !conf.test("generic", "debug"))
402  return;
403 
404  Thread thr = Thread.currentThread();
405  System.err.println("at thread " + thr.getName() + ":" + thr.getId());
406  err.printStackTrace();
407  }

+ Here is the call graph for this function:

+ Here is the caller graph for this function: