public interface FloodgateLogger
| Modifier and Type | Field and Description |
|---|---|
static String |
LOGGER_NAME |
| Modifier and Type | Method and Description |
|---|---|
void |
debug(String message,
Object... args)
Logs a debug message to the console, with 0 or more arguments.
|
void |
error(String message,
Object... args)
Logs an error message to the console, with 0 or more arguments.
|
void |
error(String message,
Throwable throwable,
Object... args)
Logs an error message to the console, with 0 or more arguments.
|
void |
info(String message,
Object... args)
Logs an info message to the console, with 0 or more arguments.
|
boolean |
isDebug()
Returns true if debugging is enabled
|
void |
trace(String message,
Object... args)
Logs a trace message to the console, with 0 or more arguments.
|
void |
translatedInfo(String message,
Object... args) |
void |
warn(String message,
Object... args)
Logs a warning message to the console, with 0 or more arguments.
|
static final String LOGGER_NAME
void error(String message, Object... args)
message - the message to log to the consoleargs - the arguments to fill the missing spots in the messagevoid error(String message, Throwable throwable, Object... args)
message - the message to log to the consolethrowable - the throwable to logargs - the arguments to fill the missing spots in the messagevoid warn(String message, Object... args)
message - the message to log to the consoleargs - the arguments to fill the missing spots in the messagevoid info(String message, Object... args)
message - the message to log to the consoleargs - the arguments to fill the missing spots in the messagevoid debug(String message, Object... args)
message - the message to log to the consoleargs - the arguments to fill the missing spots in the messagevoid trace(String message, Object... args)
message - the message to log to the consoleargs - the arguments to fill the missing spots in the messageboolean isDebug()