Modifier and Type | Method and Description |
---|---|
void |
config(Supplier<String> messageSupplier)
Log the message from the provided
messageSupplier at config level. |
void |
config(Throwable throwable,
Supplier<String> messageSupplier)
Log the provided
Throwable and message from the provided
messageSupplier at config level. |
void |
debug(Supplier<String> messageSupplier)
Log the message from the provided
messageSupplier at debug level. |
void |
debug(Throwable throwable,
Supplier<String> messageSupplier)
Log the provided
Throwable and message from the provided
messageSupplier at debug level. |
void |
error(Supplier<String> messageSupplier)
Log the message from the provided
messageSupplier at error level. |
void |
error(Throwable throwable,
Supplier<String> messageSupplier)
Log the provided
Throwable and message from the provided
messageSupplier at error level. |
void |
info(Supplier<String> messageSupplier)
Log the message from the provided
messageSupplier at info level. |
void |
info(Throwable throwable,
Supplier<String> messageSupplier)
Log the provided
Throwable and message from the provided
messageSupplier at info level. |
void |
trace(Supplier<String> messageSupplier)
Log the message from the provided
messageSupplier at trace level. |
void |
trace(Throwable throwable,
Supplier<String> messageSupplier)
Log the provided
Throwable and message from the provided
messageSupplier at trace level. |
void |
warn(Supplier<String> messageSupplier)
Log the message from the provided
messageSupplier at warning level. |
void |
warn(Throwable throwable,
Supplier<String> messageSupplier)
Log the provided
Throwable and message from the provided
messageSupplier at warning level. |
void error(Supplier<String> messageSupplier)
messageSupplier
at error level.
Maps to Level.SEVERE
in JUL.
void error(Throwable throwable, Supplier<String> messageSupplier)
Throwable
and message from the provided
messageSupplier
at error level.
Maps to Level.SEVERE
in JUL.
void warn(Supplier<String> messageSupplier)
messageSupplier
at warning level.
Maps to Level.WARNING
in JUL.
void warn(Throwable throwable, Supplier<String> messageSupplier)
Throwable
and message from the provided
messageSupplier
at warning level.
Maps to Level.WARNING
in JUL.
void info(Supplier<String> messageSupplier)
messageSupplier
at info level.
Maps to Level.INFO
in JUL.
void info(Throwable throwable, Supplier<String> messageSupplier)
Throwable
and message from the provided
messageSupplier
at info level.
Maps to Level.INFO
in JUL.
void config(Supplier<String> messageSupplier)
messageSupplier
at config level.
Maps to Level.CONFIG
in JUL.
void config(Throwable throwable, Supplier<String> messageSupplier)
Throwable
and message from the provided
messageSupplier
at config level.
Maps to Level.CONFIG
in JUL.
void debug(Supplier<String> messageSupplier)
messageSupplier
at debug level.
Maps to Level.FINE
in JUL.
void debug(Throwable throwable, Supplier<String> messageSupplier)
Throwable
and message from the provided
messageSupplier
at debug level.
Maps to Level.FINE
in JUL.
void trace(Supplier<String> messageSupplier)
messageSupplier
at trace level.
Maps to Level.FINER
in JUL.
void trace(Throwable throwable, Supplier<String> messageSupplier)
Throwable
and message from the provided
messageSupplier
at trace level.
Maps to Level.FINER
in JUL.