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

Output a debug message.

Parameters
[in]msgthe message

Definition at line 415 of file Registry.java.

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

416  {
417  Registry conf = Registry.getCurrent();
418  if (conf != null && !conf.test("generic", "debug"))
419  return;
420 
421  Thread thr = Thread.currentThread();
422  System.err.println("at thread " + thr.getName() + ":" + thr.getId());
423  System.err.println(msg);
424  }

+ Here is the call graph for this function: