public interface Logger
ApolloClient| Modifier and Type | Field and Description |
|---|---|
static int |
DEBUG |
static int |
ERROR |
static int |
WARN |
| Modifier and Type | Method and Description |
|---|---|
void |
log(int priority,
java.lang.String message,
Optional<java.lang.Throwable> t,
java.lang.Object... args)
Logs the message to the appropriate channel (file, console, etc)
|
static final int DEBUG
static final int WARN
static final int ERROR
void log(int priority,
@Nonnull
java.lang.String message,
@Nonnull
Optional<java.lang.Throwable> t,
@Nonnull
java.lang.Object... args)
priority - the priority to setmessage - message to logt - Optional throwable to logargs - extra arguments to pass to the logged message.