| Package | Description |
|---|---|
| fr.inria.atlanmod.neoemf.util.logging |
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 |
|---|---|
default void |
Logger.log(Level level,
CharSequence message)
Logs a message at the given
level. |
static void |
NeoLogger.log(Level level,
CharSequence message)
Logs a message 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 |
NeoLogger.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,
Throwable e)
Logs the stack trace of the given
Throwable at the given level. |
static void |
NeoLogger.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,
CharSequence message)
Logs a message at the given
level including the stack trace of the given Throwable. |
static void |
NeoLogger.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. |
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. |
static void |
NeoLogger.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. |
Copyright © 2013–2017 Atlanmod INRIA LINA Mines Nantes. All rights reserved.