public class DebugPrintUtil extends Object
Constructor and Description |
---|
DebugPrintUtil() |
Modifier and Type | Method and Description |
---|---|
static void |
debugPrintln(Object target)
Print target Object to console in debug mode.
|
static void |
debugPrintStackTrace(Exception e)
Print stack trace of target Exception in debug mode.
|
static void |
devOrDebugPrintln(Object target)
Print target Object to console in debug or development mode.
|
static void |
devOrDebugPrintStackTrace(Exception e)
Print stack trace of target Exception in debug or development mode.
|
static void |
devPrintln(Object target)
Print target Object to console in development mode.
|
static void |
devPrintStackTrace(Exception e)
Print stack trace of target Exception in development mode.
|
public static void debugPrintln(Object target)
target
- the target Object to printpublic static void devPrintln(Object target)
target
- the target Object to printpublic static void devOrDebugPrintln(Object target)
target
- the target Object to printpublic static void debugPrintStackTrace(Exception e)
e
- the target Exceptionpublic static void devPrintStackTrace(Exception e)
e
- the target Exceptionpublic static void devOrDebugPrintStackTrace(Exception e)
e
- the target Exception