public class Log
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static boolean |
DEBUG |
Constructor and Description |
---|
Log() |
Modifier and Type | Method and Description |
---|---|
static void |
debug()
Usage : if (Log.DEBUG) Log.debug();
This will automatically print the calling class and method name using new JDK1.4 features. |
static void |
debug(java.lang.String msg)
Usage : if (Log.DEBUG) Log.debug("message");
This will automatically print the calling class and method name using new JDK1.4 features. |
static void |
debugAppend(java.lang.String msg)
use it like this : if (Log.DEBUG) Log.debugAppend(this,"bla bla"); *
|
static void |
debugAppendLn(java.lang.String msg)
Usage : if (Log.DEBUG) Log.debugAppendLn("bla bla");
|
static void |
error(java.lang.String msg) |
static void |
warning(java.lang.String msg) |
public static final boolean DEBUG
public static void debug()
public static void debug(java.lang.String msg)
public static void debugAppendLn(java.lang.String msg)
public static void debugAppend(java.lang.String msg)
public static void error(java.lang.String msg)
public static void warning(java.lang.String msg)
Submit a bug : syd@jpicedt.org