public interface Log
-assumenosideeffects class com.github.dm.jrt.log.Logger {
public void dbg(...);
}
Created by davide-maestroni on 10/03/2014.Logger| Modifier and Type | Interface and Description |
|---|---|
static class |
Log.Level
Log levels enumeration from more to less verbose.
|
| Modifier and Type | Method and Description |
|---|---|
void |
dbg(List<Object> contexts,
String message,
Throwable throwable)
Logs a debug message.
|
void |
err(List<Object> contexts,
String message,
Throwable throwable)
Logs an error message.
|
void |
wrn(List<Object> contexts,
String message,
Throwable throwable)
Logs a warning message.
|
void dbg(@NotNull
List<Object> contexts,
@Nullable
String message,
@Nullable
Throwable throwable)
contexts - the list of contexts.message - the message.throwable - the optional throwable or null.void err(@NotNull
List<Object> contexts,
@Nullable
String message,
@Nullable
Throwable throwable)
contexts - the list of contexts.message - the message.throwable - the optional throwable or null.