public class Debug
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Debug.Level
Enumerate type representing level of information that should be
presented to the user of the framework.
|
| Modifier and Type | Field and Description |
|---|---|
static Debug.Level |
debugLevel
The debug level, that can take one of the values defined by
Debug.Level. |
static java.lang.String |
heartTag |
| Constructor and Description |
|---|
Debug() |
| Modifier and Type | Method and Description |
|---|---|
static void |
debug(java.lang.String tag,
Debug.Level level,
java.lang.String message)
The method that logs current action and prints it either to the
System.err in desktop environment or with Log.d in Android.
|
public static final java.lang.String heartTag
public static Debug.Level debugLevel
Debug.Level.
By default the silent mode is selected.public static void debug(java.lang.String tag,
Debug.Level level,
java.lang.String message)
tag - a tag that is used for logging in Android.
This can be skipped in desktop environment.level - indicating debug level of the messagemessage - that should be logged.