public final class ANSITerminal
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static void |
dump(java.lang.String msg)
Prints message to the console
|
static void |
error(java.lang.String msg)
Prints message to the console in red colour
|
static void |
incoming(java.lang.String msg)
Prints message to the console in cyan colour
|
static void |
info(java.lang.String msg)
Prints message to the console in blue colour
|
static boolean |
isMute()
Checks whether console output has been disabled by user using command line argument
|
static void |
loaded(java.lang.String msg)
Prints message to the console in magenta colour
|
static void |
log(java.lang.String msg) |
static void |
muteConsole(boolean isMute)
Disables console output
|
static void |
ok(java.lang.String msg)
Prints message to the console in green colour
|
static void |
status(java.lang.String msg)
Prints message to the console in black colour
|
static void |
warn(java.lang.String msg)
Prints message to the console in yellow colour
|
public static void log(java.lang.String msg)
public static void dump(java.lang.String msg)
msg - message to to print to the consolepublic static void status(java.lang.String msg)
msg - message to to print to the consolepublic static void info(java.lang.String msg)
msg - message to to print to the consolepublic static void ok(java.lang.String msg)
msg - message to to print to the consolepublic static void error(java.lang.String msg)
msg - message to to print to the consolepublic static void warn(java.lang.String msg)
msg - message to to print to the consolepublic static void incoming(java.lang.String msg)
msg - message to to print to the consolepublic static void loaded(java.lang.String msg)
msg - message to to print to the consolepublic static void muteConsole(boolean isMute)
isMute - if true, the console output will be disabledpublic static boolean isMute()