| Package | Description |
|---|---|
| org.atlanmod.commons.log |
Provides classes for logging information and events.
|
| Modifier and Type | Method and Description |
|---|---|
static Level |
Level.valueOf(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 and Description |
|---|---|
static void |
Log.log(Level level,
CharSequence message)
Logs a message at the given
level, using the root logger. |
default void |
Logger.log(Level level,
CharSequence message)
Logs a message at the given
level. |
static void |
Log.log(Level level,
CharSequence message,
Object... params)
Logs a message with parameters at the given
level, using the root logger. |
default void |
Logger.log(Level level,
CharSequence message,
Object... params)
Logs a message with parameters at the given
level. |
static void |
Log.log(Level level,
Object obj)
Logs an object at the given
level, using the root logger. |
default void |
Logger.log(Level level,
Object obj)
Logs an object at the given
level. |
static void |
Log.log(Level level,
Throwable e)
Logs the stack trace of the given
Throwable at the given level, using the root logger. |
default void |
Logger.log(Level level,
Throwable e)
Logs the stack trace of the given
Throwable at the given level. |
static void |
Log.log(Level level,
Throwable e,
CharSequence message)
Logs a message at the given
level including the stack trace of the given Throwable, using the
root logger. |
default void |
Logger.log(Level level,
Throwable e,
CharSequence message)
Logs a message at the given
level including the stack trace of the given Throwable. |
static void |
Log.log(Level level,
Throwable e,
CharSequence message,
Object... params)
Logs a message with parameters at the given
level including the stack trace of the given Throwable, using the root logger. |
void |
Logger.log(Level level,
Throwable e,
CharSequence message,
Object... params)
Logs a message with parameters at the given
level including the stack trace of the given Throwable. |
Copyright © 2017–2019 Atlanmod. All rights reserved.