Package | Description |
---|---|
org.tinylog |
Public logging API for tinylog 2.
|
org.tinylog.provider |
API for logging framework implementations.
|
Modifier and Type | Method | Description |
---|---|---|
static Level |
Level.valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Level[] |
Level.values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method | Description |
---|---|---|
Level |
LoggingProvider.getMinimumLevel(java.lang.String tag) |
Gets the lowest activated severity level for a tag.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
LoggingProvider.isEnabled(int depth,
java.lang.String tag,
Level level) |
Checks whether log entries with given tag and severity level will be output.
|
static void |
InternalLogger.log(Level level,
java.lang.String message) |
Logs a plain text message.
|
static void |
InternalLogger.log(Level level,
java.lang.Throwable exception) |
Logs a caught exception.
|
static void |
InternalLogger.log(Level level,
java.lang.Throwable exception,
java.lang.String message) |
Logs a caught exception with a custom text message.
|
void |
LoggingProvider.log(int depth,
java.lang.String tag,
Level level,
java.lang.Throwable exception,
java.lang.Object obj,
java.lang.Object... arguments) |
Provides a regular log entry.
|
void |
LoggingProvider.log(java.lang.String loggerClassName,
java.lang.String tag,
Level level,
java.lang.Throwable exception,
java.lang.Object obj,
java.lang.Object... arguments) |
Provides a regular log entry.
|
Copyright © 2018. All rights reserved.