Package | Description |
---|---|
reactor.util |
Miscellaneous utility classes, such as loggers, tuples or queue suppliers and implementations.
|
Modifier and Type | Method and Description |
---|---|
default void |
Logger.errorOrDebug(Logger.ChoiceOfMessageSupplier messageSupplier)
Convenience method to log a message that is different according to the log level.
|
default void |
Logger.errorOrDebug(Logger.ChoiceOfMessageSupplier messageSupplier,
Throwable cause)
Convenience method to log an exception (throwable), with an accompanying
message that is different according to the log level.
|
default void |
Logger.infoOrDebug(Logger.ChoiceOfMessageSupplier messageSupplier)
Convenience method to log a message that is different according to the log level.
|
default void |
Logger.infoOrDebug(Logger.ChoiceOfMessageSupplier messageSupplier,
Throwable cause)
Convenience method to log an exception (throwable), with an accompanying
message that is different according to the log level.
|
default void |
Logger.warnOrDebug(Logger.ChoiceOfMessageSupplier messageSupplier)
Convenience method to log a message that is different according to the log level.
|
default void |
Logger.warnOrDebug(Logger.ChoiceOfMessageSupplier messageSupplier,
Throwable cause)
Convenience method to log an exception (throwable), with an accompanying
message that is different according to the log level.
|