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